路由器配置
一、回顾
- 静态路由是由管理员手工配置,单向的,不灵活
- 默认路由是特殊的静态路由,他是直接指定目标为任何地方
二、静态路由配置
1. 静态路由
- 思科设备:
ip route 目标网路(目标网段“目标的网络地址”)目标的子网掩码 下一跳地址
ip route 192.168.10.0 255.255.255.0 192.168.30.2
ip route 192.168.10.0 255.255.255.0 f0/1
- 华为设备:
ip route-static 192.168.1.0 24 192.168.2.1
2. 默认路由
- 思科设备:
ip route 0.0.0.0 0.0.0.0 192.168.30.2
- 华为设备:
ip route-static 0.0.0.0 0.0.0.0 192.168.2.2
3. 查看路由条目
- 思科设备:
show ip route
- 华为设备:
display ip routing-table
三、在路由器上配置DHCP
- 目的:使客户机可以通过路由器所提供的DHCP服务获取到IP地址
- DHCP:动态主机配置协议
1. 思路
-
定义DHCP地址池
- 池的名字
R0(config)#ip dhcp pool woniu
- 指定分配的网段:网络地址和子网掩码
R0(dhcp-config)#network 192.168.10.0 255.255.255.0
- 指定默认网关
R0(dhcp-config)#default-route 192.168.10.254
- 指定DNS服务器地址
R0(dhcp-config)#dns-server 114.114.114.114
-
指定保留地址
R0(config)#ip dhcp excluded-address 192.168.10.1 192.168.10.50