cisco路由配置基础
刚刚接触cisco路由配置,下面是学习的笔记,感觉命令还是多敲才能熟悉
一、所处状态各类
router>
用户处于用户命令状态,可以查看网络和主机
router#
用户处于特权模式,可以查看状态,还可以看到和更改路由器的设置内容
router(config)#
全局配置状态,可以设置路由的全局参数
router(config-if)#;router(config-line)#;router(config-router)#.....
处于局部配置状态,可以设置路由的局部参数
二、配置端口ip
命令
en
configt//全局模式
interfacef0/0
ipaddress192.168.1.1255.255.255.0//设置端口ip
noshu//生效
exit
interfacef0/1
ipaddress192.168.10.1255.255.255.0
noshu
exit
end
disable
三、配置静态路由
命令
en
configt//全局模式
iproute192.168.100.0255.255.255.0192.168.10.2//到192.168.100.0/24通过192.168.10.2接口
end
showiproute//可以看到前面标明s,即为静态路由
四、配置动态路由(rip)
命令
en
configt//全局模式
norouterip//禁止rip协议
routerip
network192.168.1.0//network参数为路由的两个端口对应的网络地址
network192.168.10.0
exit
end
disable
五、配置dhcp
命令
en
configt//全局模式
ipdhcpexcluded-address192.168.1.1//需要排除的ip地址
ipdhcppoolgr-dhcp-pool//ip地址池名
default-server192.168.1.1//指定dhcp服务器
network192.168.1.0255.255.255.0//配置网络
dns-server61.177.7.1//配置dns服务器
exit
end
disable
可以通过iphelper-address指定dhcp中继代理
interfacefastethernet0/1
ipaddress192.168.1.1255.255.255.0
iphelper-address192.168.10.2\\配置dhcp中继代理,dhcp
六、配置nat
命令
en
configt//全局模式
interfacef0/0
ipaddress192.168.1.1255.255.255.0
ipnatinside//内部端口
noshu
exit
interfacef0/1
ipaddress192.168.10.1255.255.255.0
ipnatoutside//外部端口
noshu
exit
access-list1permitany//设置一个可访问列表
ipnatpoolgr-nat-pool192.168.10.3192.168.10.254netmask255.255.255.0//设置分配池
ipnatinsideresourcelist1poolgr-nat-pooloverload
showipnattraslations
clearipnattraslation*
七、其它
shrunning-config//显示当前运行配置
shstartup-config//显示开机配置
shiproute//显示路由
shnattraslations//显示nat当前情况