ISP运行商
dsl modem电话
media converter
169.254.0.0 自动在主机上分配的ip
动态分配ip地址
手动分配ip地址
ip domain lookup.打开域名简析功能
NAT(网络地址转换:将私有地址转换成为共有地址上网) 公司内网的私有地址上网
local(内网) global(外网)
inside local地址 outside local地址
inside global outside global
NAT的三种转换方式:
1.静态NAT 一对一的进行地址转换
zuoyong作用:ip nat inside source static tcp 192.168.0.11 80 192.168.3.106 80
打开路由内网nat端口
打开路由外网nat端口
debug ip nat
undebug all流量
show nat translations转换表
clear ip nat translations *清空转换表
2.动态NAT 多对多的进行地址转换
ip name-server 路由器上
3.PAT NAT 多对一的进行地址转换
ip nat inside source list 1 pool natpool overload(超载,过载)PAT
IP nat inside source list 1 interface e0/1 overload
no logging console 关闭日志功能
access-list 2 permit host 192.168.3.1.6
ip nat pool yangpool 192.168.0.253 192.168.0.254 255.255.255.0 type rotary循环
ip nat inside destination list 2d pool yangpool
NAT 的转换方向:
1.inside source 内网上网,静态nat
2.inside destination 做nat的负载均衡
3.outside source 解决地址交叉问题
ip nat inside source static 192.168.1.1 192.168.23.1
ip nat outside source static 192.168.1.1 192.168.100.100
int e0/0
ip nat inside
int e0/1
ip nat outside
ip route 192.168.100.0 255.255.255.0 192.168.23.2