思科路由器配置基础(五—七) - 思科路由器配置基础_7个方面详解cisco路由器配置
五、配置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
六、配置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 *
七、其它
sh running-config //显示当前运行配置
sh startup-config //显示开机配置
sh ip route //显示路由
sh nat traslations //显示nat当前情况
- 第 1 页:思科路由器配置基础_7个方面详解cisco路由器配置
- 第 2 页:思科路由器配置基础(三—四)
- 第 3 页:思科路由器配置基础(五—七)
本文导航
非常好我支持^.^
(38) 97.4%
不好我反对
(1) 2.6%
相关阅读:
- [电子说] 环旭电子推出Pisces企业级无线路由器助力企业应对高密度数据挑战 2023-10-24
- [电子说] 拆机看看华为路由器的天线与滤波器 2023-10-24
- [电子说] 工业路由器一般都用哪种协议? 2023-10-24
- [电子说] SR-MPLS是什么?SR-MPLS的实际应用 2023-10-23
- [移动通信] 如何解决局域网ip地址不够用问题? 2023-10-23
- [电子说] CPE一般支持哪些工作模式?与MIFI相比,优势在哪里? 2023-10-22
- [电子说] Ai-WB2模组HTTP客户端HEAD和GET请求方法 2023-10-21
- [电子说] 中兴晴天墙面路由器喜获2023年GMARK设计大奖 2023-10-20
( 发表人:陈翠 )