思科入门路由器配置基础知识讲解

475人已阅读 2018-07-24 14:59:00
导读 腾科IT教育的小编为大家带来了思科入门路由器配置基础知识,其中*括配置端口ip、配置静态路由、配置动态路由等等相关的知识,适合思科入门阶段的学员,快来了解吧!
软件开发 华为认证 思科认证 甲骨文认证 红帽认证 微软认证 Cloudera(Hadoop) 其他课程

新闻详情

2018-07-24 14:59:00

思科入门路由器配置基础知识讲解

腾科IT教育的小编为大家带来了思科入门路由器配置基础知识,其中*括配置端口ip、配置静态路由、配置动态路由等等相关的知识,适合思科入门阶段的学员,快来了解吧!
思科入门路由器配置基础知识讲解
1
所处状态各类

router>
用户处于用户命令状态,可以查看网络和主机
router#
用户处于特权模式,可以查看状态,还可以看到和更改路由器的设置内容
router(config)#
全局配置状态,可以设置路由的全局参数
router(config-if)#;router(config-line)#;router(config-router)#.....
处于局部配置状态,可以设置路由的局部参数

2
配置端口ip

命令
en
config t //全局模式
interface f0/0
ip address 192.168.1.1 255.255.255.0 //设置端口ip
no shu //生效
exit
interface f0/1
ip address 192.168.10.1 255.255.255.0
no shu
exit
end
disable

3
配置静态路由

命令
en
config t //全局模式
ip route 192.168.100.0 255.255.255.0 192.168.10.2 //到192.168.100.0/24通过192.168.10.2接口
end
show ip route //可以看到前面标明S,即为静态路由

4
配置动态路由(RIP)

命令
en
config t //全局模式
no route rip //禁止rip协议
route rip
network 192.168.1.0 //network参数为路由的两个端口对应的网络地址
network 192.168.10.0
exit
end
disable

5
配置DHCP

命令
en
config t //全局模式
ip dhcp excluded-address 192.168.1.1 //需要排除的ip地址
ip dhcp pool gr-dhcp-pool //ip地址池名
default-server 192.168.1.1 //指定dhcp服务器
network 192.168.1.0 255.255.255.0 //配置网络
dns-server 61.177.7.1 //配置dns服务器
exit
end
disable
可以通过 ip helper-address指定 DHCP中继代理
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
ip helper-address 192.168.10.2 //配置DHCP中继代理,DHCP

6
配置NAT

命令
en
config t //全局模式
interface f0/0
ip address 192.168.1.1 255.255.255.0
ip nat inside //内部端口
no shu
exit
interface f0/1
ip address 192.168.10.1 255.255.255.0
ip nat outside //外部端口
no shu
exit
access-list 1 permit any //设置一个可访问列表
ip nat pool gr-nat-pool 192.168.10.3 192.168.10.254 netmask 255.255.255.0 //设置分配池
ip nat inside resource list 1 pool gr-nat-pool overload
show ip nat traslations
clear ip nat traslation *

7
其他

sh running-config //显示当前运行配置
sh startup-config //显示开机配置
sh ip route //显示路由
sh nat traslations //显示nat当前情况

上一篇: 无 下一篇: JAVA从入门到精通

相关文章

推荐课程

查看全部课程
上海腾科IT教育

上海腾科IT教育

上海分校

查看全部校区 进入官方主页