路由器登錄界面從那里進(如何進入銳捷NBR100路由器管理界面)
一、路由器登錄界面從那里進
1、打開Web瀏覽器,在地址欄中鍵入http://192.168.0.1,然后按Enter鍵。
2、在隨后打開的登陸窗口里,輸入用戶名“admin”;密碼同樣也是“admin”;然后直接單擊“確定”。
3、在進入路由器設置界面后,在左邊選擇“設置向導”,再點擊“下一步”。
4、選擇“PPPOE(ADSL虛擬撥號)”,點擊進入下一步,。
5、在頁面彈出的“上網賬號”中輸入所辦理的電信寬帶賬號,在“上網口令”和“確認口令”中輸入寬帶上網密碼,再點擊進入下一步。
6、點擊“完成”,并返回首頁,檢查設置是否正確。
可以看到路由器已經成功撥號并獲取到上網IP地址,此時可以嘗試上網。
如果還是不行,建議您檢查一下自己的線路和電腦是否正常
二、如何進入銳捷NBR100路由器管理界面
銳捷NBR100 NBR200 網吧路由器的高級設置方法
一天在配置NBR1000的時候碰不到不少沒看過的東西。
用向導始終只是知道皮毛,還是要了解下RGNOS。
首先看下命令模式的提示符。
Red-Giant> 普通用戶模式 和路由器建立連接時即可進入,如果 Telnet模式需要輸入密碼
Red-Giant# 特權用戶模式 普通模式下輸入enable,同時輸入授權密碼
Red-Giant(config)# 全局配置模式 在特權用戶模式下輸入configure terminal
Red-Giant(config-router)# 路由協議配置模式 在全局模式下根據路由協議用router命令進入
Red-Giant(config-if)# 接口配置模式 在全局模式下根據配置的接口用interface命令進入
Red-Giant(config-subif)# 子接口配置模式 在全局模式下根據指定的子接口用interface命令進入
Red-Giant(config-line)# 線路配置模式 在全局模式下根據要配置的線路用line命令進入
Red-Giant(config-dial-peer)# 撥號對等體配置模式 在全局模式下用dial-peer voice 100 pots 或者dial-peer voice 100 voip命令進入
Red-Giant(config-voice-port)# 語音端口配置模式 在全局模式下用voice port 0進入
Red-Giant(config-voice-service-vo)# 語音端口配置模式 在全局模式下用voice service voip進入
Red-Giant(cfg-crypto-trans)# 安全轉換方式配置模式 在全局模式下用crypto ipsectransform-set mytran進入
Red-Giant(config-isakmp)# IKE策略配置模式 在全局模式下用crypto isakmp policy 1進入
Red-Giant(config-crypto-map)# 安全策略配置模式 在全局模式下用crypto map mymap 1進入
boot: ROM監控模式 在特權用戶模式下用reboot命令重起路由器,在啟動時3秒內按CTRL+BREAK鍵
--------------------------------------------------------------------------------
常用命令示范。
搭建內部服務器的方法,既端口映射方法。
Red-Giant>enable ------進入特權用戶組
Red-Giant#config terminal ------進入全局配置
Red-Giant(config)#interface fastethernet 0 ---進入WAN口配置層
Red-Giant(config-if)#ip address 61.175.200.116 255.255.255.248 ---配置WAN口地址
Red-Giant(config-if)#ip nat outside ---設置WAN口為共享連接的internet的接入口
Red-Giant(config-if)#no shut ----啟用WAN口
Red-Giant(config-if)#end ----返回普通用戶層
系統會返回提示信息,提示WAN口處于UP狀態
Red-Giant#config terminal ------進入全局配置
Red-Giant(config)#interface fastethernet 1 ---進入LAN口配置層
Red-Giant(config-if)#ip address 192.168.0.1 255.255.255.0 ---配置LAN口地址
Red-Giant(config-if)#ip nat inside ---設置LAN口為共享連接的internet的接入口
Red-Giant(config-if)#no shut ----啟用LAN口
Red-Giant(config-if)#end
Red-Giant#
Red-Giant#config terminal ------進入全局配置
Red-Giant(config)#ip router 0.0.0.0 0.0.0.0 fastenhernet 0 61.175.200.116 ----配置默認路由以訪問Internet
Red-Giant(config)#access-list 1 permit any ---配置NAT應用的訪問列表
Red-Giant(config)#ip nat inside source list 1 interface fastethernet 0 ---配置連接共享規則
Red-Giant(config)#ip nat inside source static tcp 192.168.0.20 21 61.175.200.116 21 ---配置192.168.0.20的機子FTP端口映射
Red-Giant(config)#ip nat inside source static tcp 192.168.0.30 80 61.175.200.116 80 ---配置192.168.0.30的機子HTTP端口映射
Red-Giant(config)#end
Red-Giant#
Red-Giant#config terminal
Red-Giant(config)#line vty 0 4 ----配置遠程TELNET訪問密碼
Red-Giant(config-line)#password temoteuser
Red-Giant(config-line)#end
Red-Giant#
Red-Giant#config terminal
Red-Giant(config)#enable password puzzle
Red-Giant(config)#host name ----設置路由器名字
name(config)#end
name#
name#write ----保存配置
name#show running-config ---查看當前運行的配置
這樣就算配置完成了。
附件是簡單的配置說明。
更詳細的配置參數可以查看RGNOS的說明。