想要了解如何优酷路由器怎么设置的朋友,不要错过本文哦。在这里,我们不仅会为您介绍相关的知识点,还会分享一些优酷路由器怎么设置wifi的实用技巧和经验,希望对您有所帮助。本文内容目录一览:1、优酷路由宝恢复出厂设置2、优酷路由器怎么设置3、优酷土豆路由器重置4、优酷土豆怎么设置副路由器优酷路由宝恢复出厂设置 长按RESET按钮。 1、在优酷路由器的机身有一个复位按数历钮RESET。 2、在插上凯毕吵电源的情况下,一直按住RESET按钮10秒左右的时间。 3、松开,就把优酷路由器恢复出厂盯侍设置。 优酷路由器怎么设置 如今网络的迅速发展迅速发展,无线网络接收器也越来越多,为了方便移动设备上网,路由器、路由宝等接收设备也接踵而来。本章我教大家优酷路由器怎么设置,欢迎您来到家电维修技术论坛学习,希望本文章对你有所帮助。 优酷路由器怎么设置 2、在电脑中输入:wifi.youku.com(或192.168.11.1)进入路由宝配置页面。 3、在配置页面中点击快速设置。 4、设置姿掘陪路由宝接入互联网的方式:互联网方式选择宽带拨号,分别填写宽带账号与密码。 5、设置WiFi名称和密码:根据提示填写WiFi名称与密码即可。 6、设置完成后,点击立刻体验。 7、重新登录路由宝,并输入密码。 8、成功登录之后,便可现实优酷路由宝联网时的界面。 拓展: 路由器的设迹蠢置 进入电脑桌面,右击“网络”,选择“属性”。 进入网络和Internet页面,点击“以太网”。 然后点击“详细信息”。 找到网关地址,我的是192.168.1.1。 打开浏览器在地址栏输入192.168.1.1,敲击回车。 进入网站后弹出登录框,输入用户名和密码,一般都是统一的用户名和密码admin,不知道的可以看看路由器的背面,上面有写。 进入后点击左侧向导中的设置向导。 在设置向导中点击下一步。 选择上网的'方式,点击下一步。 再按照向导一步一步完成就可以了。 路由器配置命令 路由器的命令实际上难度和早期的dos操作系统或命令行的linux比较接近,但功能上要比以上操作系统单一很多。不同厂商的路由器命令有些许差别,但功能性的东西没有本质的差别。 以下是常用路由器配置命令。 1. 进入特权模式 enable router enable router # 2. 进入全局配置模式 configure terminal router enable router #configure terminal router (config)# 3. 重命名 hostname routera 以routerA为例 router 散册 enable router #configure terminal router(config)#hostname routerA routerA (config)# 4. 配置使能口令 enable password cisco 以cisco为例 router enable router #configure terminal router(config)#hostname routerA routerA (config)# enable password cisco 5. 配置使能密码 enable secret ciscolab 以cicsolab为例 router enable router #configure terminal router(config)#hostname routerA routerA (config)# enable secret ciscolab 6. 进入路由器某一端口 interface fastethernet 0/1 router enable router #configure terminal router(config)#hostname routerA routerA (config)# interface fastethernet 0/1 routerA (config-if)# 进入路由器的某一子端口 interface fastethernet 0/1.1 以1端口的1子端口为例 router enable router #configure terminal router(config)#hostname routerA routerA (config)# interface fastehernet 0/1.1 7. 设置端口ip地址信息 router enable router #configure terminal router(config)#hostname routerA routerA(config)# interface fastethernet 0/1 以1端口为例 routerA (config-if)#ip address 192.168.1.1 255.255.255.0 配置交换机端口ip和子网掩码 routerA (config-if)#no shut 启动此接口 routerA (config-if)#exit 8. 查看命令 show router enable router # show version 察看系统中的所有版本信息 show controllers serial + 编号查看串口类型 show ip route 查看路由器的路由表 9. cdp相关命令 router enable router # show cdp 查看设备的cdp全局配置信息 show cdp traffic 查看有关cdp包的统计信息 show cdp neighbors 列出与设备相连的cisco设备 10. csico2600的密码恢复 重新启动路由器,在启动过程中按下ctrl+break键,使路由器进入rom monitor模式。 在提示符下输入命令修改配置寄存器的值,然后重新启动路由器。 rommon1confreg 0×2142 rommon2reset 重新启动路由器后进入setup模式,选择“no”,退回到exec模式,此时路由器原有的配置仍然保存在startup-config中,为使路由器恢复密码后配置不变,则需要把startup-config中配置保存到running-config中,然后重新设置enable密码,并把配置寄存器的值改回0×2102。 routerenable router#copy startup-config running-config router#configure terminal router(config)#enable password cisco router(config)#config-register 0×2102 保存当前配置到startup-config , 重新启动路由器。 router #copy running-config startup-config router #reload 11. 路由器telnet远程登录设置 routeren router #configure terminal router (config)#hostname routerA routerA (config)#enable password cisco 以cisco为特权模式密码 routerA (config)#interface fastethernet 0/1 routerA (config-if)#ip address 192.168.1.1 255.255.255.0 routerA (config-if)#no shut routerA (config-if)#exit routerA (config)line vty 0 4 设置0-4 个用户可以telnet远程登陆 routerA (config-line)#password 123 routerA (config-line)#login 12. 配置路由器的标识 banner $……………$ 在全局配置的模式下利用“banner”命令可以配置路由器的提示信息,所有连接到路由器的终端都会收到。 routeren router #configure terminal router (config)#hostname routerA routerA(config)#banner motd $This is aptech company’ router ! Please don’t change the configuration without permission!$ 13. 配置接口标识 description ……… 接口标识用于区分路由器的各个接口。用show run命令可以查看到这些标识。 routeren router #configure terminal router (config)#hostname routerA routerA(config)#interface fastethernet 0/1 以0/1 接口为例 routerA(config-if)# description this is a fast Ethernet port used to connecting the company’s intranet! 14. 配置超时 超时用于设置在多长时间没有对console进行配置,自动返回exec会话时间。默认为10分钟。 routeren router #configure terminal router (config)#hostname routerA routerA(config)#line console 0 routerA(config-line)#exec-timeout 0 0 第一个“0”代表分钟,第二个“0”代表秒 15. 配置串口参数 两台路由器通过串口连接需要一个做为DTE,一个做为DCE。DCE设备要向DTE设备提供时钟频率和带宽。 DCE配置: routeren router #configure terminal router (config)#hostname routerA routerA(config)#interface serial 0/0 routerA(config-if)#clock rate 64000 提供时钟频率为64000 routerA(config-if)#bandwidth 64 提供带宽为64 routerA(config-if)#no shut DTE配置: routeren router #configure terminal router (config)#hostname routerB routerB(config)#interface serial 0/0 routerB(config-if)#no shut 16. 静态路由的配置 配置路由器R1的名称和接口参数 routerenable router#configure terminal router(config)#hostname routerA routerA(config)#interface fastethernet 0/0 routerA(config-if)#ip address 192.168.2.1 255.255.255.0 routerA(config-if)#no shutdown routerA(config-if)#exit routerA(config)# interface fastethernet 0/1 routerA(config-if)#ip address 192.168.3.1 255.255.255.0 routerA(config-if)#no shutdown 主机A的ip地址为 192.168.3.2 255.255.255.0 192.168.3.1 配置路由器R2的名称和接口参数 routerenable router#configure terminal router(config)#hostname routerB routerB(config)#interface fastethernet 0/0 routerB(config-if)#ip address 192.168.2.2 255.255.255.0 routerB(config-if)#no shutdown routerB (config-if)#exit routerB(config)# interface fastethernet 0/1 routerB(config-if)#ip address 192.168.1.1 255.255.255.0 主机B的ip地址为 192.168.1.2 255.255.255.0 192.168.1.1 配置路由器R1的静态路由表 routerA(config)#ip router 192.168.1.0 255.255.255.0 192.168.2.2 配置路由器R2的静态路由表 routerA(config)#ip router 192.168.3.0 255.255.255.0 192.168.2.1 在R1和R2上配置默认路由 routerA(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.2 routerA(config)#ip classless routerB(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.1 routerB(config)#ip classless(支持可变长子网掩码、无类域间路由) 在routerA和routerB上配置动态路由(RIP) routerA(config)#router rip routerA(config)#network 192.168.2.0 routerA(config)#network 192.168.3.0 routerB(config)# router rip routerB(config)#network 192.168.2.0 routerB(config)#network 192.168.1.0 17. 配置单臂路由 router(config)# interface f0/0.1 router(config-subif)# ip address 192.168.1.1 255.255.255.0 router(config-subif)# encapsulation dot1q 1 router(config-subif)# exit router(config)# interace f0/0.2 router(config-subif)# ip address 192.168.2.1 255.255.255.0 router(config-subif)# encapsulation dot1q 2 router(config-subif)# exit router(config)# interface f0/0.3 router(config-subif)# ip address 192.168.3.1 255.255.255.0 router(config-subif)# encapsulation dot1q 3 router(config-subif)# exit router(config)# interface f0/0 router(config-if)# no shut优酷土豆路由器重置 优酷土豆路由器重置的步骤如下: 1. 找到路由器的复位按钮,一般位于路由器的背面或底部; 2. 使用细尖物体(如笔尖)按住复位按钮,按住5秒钟;贺敬 3. 释放复位按钮,路由器会自动重启; 4. 重启完成后,塌悄路由器的默认设置将恢复,可以使用默认的用户团拍渣名和密码登录路由器; 5. 如果需要,可以重新设置路由器的参数,以满足自己的需求。优酷土豆怎么设置副路由器 优酷棚袭土豆设置副路由器的方法: 1、路由的外包装是用牛皮盒子包装的,看起来十分简洁,盒子很硬,防止暴力物流使路由器受伤。 2、插上电源和路由宝。 3、在段和敬游览器输入WiFi优酷网址,比其握慎他普通路由器好的一点就在于不再需要记住繁琐的IP地址。 4、第一次使用会显示快速设置,点击进入。 5、设置上网账号和密码即可。 在这篇文章中,我们分享了一些路由器和无线网络的技巧和方法,希望它们能够帮助您更好地管理和使用您的网络,让您的上网更加畅快无阻。希望这篇文章能够为您提供有用的信息和帮助,让您更好地管理和使用您的网络,享受更好的上网体验。 |
|Archiver|手机版|家电维修论坛
( 蜀ICP备19011473号-4 川公网安备51102502000164号 )
GMT+8, 2025-7-15 05:37 , Processed in 0.123593 second(s), 17 queries .
Powered by Discuz! X3.5
© 2001-2025 Discuz! Team.