您当前的位置:首页 > 电脑百科 > 网络技术 > 网络设置

Cisco设备上个实现NAT和PAT实验

时间:2020-06-09 13:21:16  来源:  作者:

实验目的:

1:在HQ上部署静态地址转换将Server的TCP 80端口 映射到 本设备公网IP地址(192.168.1.2)的 TCP 8888端口。

2:在Branch上部署PAT 使得PC1和PC2都能够访问互联网(能ping通192.168.1.2),Branch设备上不能写静态路由。

Cisco设备上个实现NAT和PAT实验

拓扑图

LAB1:

在HQ上部署静态地址转换将Server的TCP 80端口 映射到 本设备公网IP地址(192.168.1.2)的 TCP 8888端口。

PC1的配置(基本配置):

Router>enable //用户模式进入特权模式

Router#configure terminal //特权模式进入全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

PC1(config)#hostname PC1 //设备命名为PC 1

PC1(config)#no ip routing //关闭路由功能

PC1(config)#ip default-gateway 10.1.10.254 //默认网关为10.1.10.254

PC1(config)#interface ethernet 0/1 //进入接口E0/1

PC1(config-if)#ip address 10.1.10.100 255.255.255.0

//IP地址配置为10.1.10.100/24

PC1(config-if)#no shutdown //开启接口

*Oct 26 23:59:31.864: %LINK-3-UPDOWN: Interface Ethernet0/1, changed state to up

*Oct 26 23:59:32.873: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/1, changed state to up

PC1(config-if)#exit //退出接口模式

PC1(config)#

PC2的配置(基本配置):

Router>enable //用户模式进入特权模式

Router#configure terminal //特权模式进入全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname PC2 //设备命名为PC2

PC2(config)#no ip routing //关闭路由功能

PC2(config)#ip default-gateway 10.1.20.254

//默认网关为10.1.20.254

PC2(config)#interface ethernet 0/1 //进入接口E0/1

PC2(config-if)#ip add 10.1.20.200 255.255.255.0

//接口配置ip地址

PC2(config-if)#no shutdown //开启接口

*Oct 27 00:08:30.621: %LINK-3-UPDOWN: Interface Ethernet0/1, changed state to up

*Oct 27 00:08:31.629: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/1, changed state to up

PC2(config-if)#exit //退出到接口模式

PC2(config)#

 

SW1的配置(基本配置):

Switch>enable //用户模式进入特权模式

Switch#configure terminal //特权模式进入全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#hostname SW1 //设备命名为SW1

SW1(config)#vlan 10 //创建vlan10

SW1(config-vlan)#exit

SW1(config)#vlan 20 //创建vlan20

SW1(config-vlan)#exit

SW1(config)#interface ethernet 0/0 //进入接口E0/0

SW1(config-if)#switchport trunk encapsulation dot1q

//接口封装DOT1Q

SW1(config-if)#switchport mode trunk //接口模式为trunk

SW1(config-if)#no shutdown //开启接口

SW1(config-if)#exit

SW1(config)#interface ethernet 0/1 //进入接口E0/1

SW1(config-if)#switchport mode access //接口配置为access

SW1(config-if)#switchport access vlan 10 //接口配置vlan10通过

SW1(config-if)#no shutdown //开启接口

SW1(config-if)#exit

SW1(config)#interface ethernet 0/2 //进入接口E0/2

SW1(config-if)#switchport trunk encapsulation dot1q

//接口封装DOT1Q

SW1(config-if)#switchport mode trunk //接口模式为trunk

SW1(config-if)#no shutdown //开启接口

SW1(config-if)#exit

SW2的配置(基本配置):

Switch>enable //用户模式进入特权模式

Switch#configure terminal //特权模式进入全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#hostname SW2 //设备命名为SW2

SW2(config)#vlan 10 //创建vlan10

SW2(config-vlan)#exit

SW2(config)#vlan 20 //创建vlan20

SW2(config-vlan)#exit

SW2(config)#interface ethernet 0/1 //进入接口E0/1

SW2(config-if)#switchport mode access //接口配置为access

SW2(config-if)#switchport access vlan 20 //接口配置vlan20通过

SW2(config-if)#no shut //开启接口

SW2(config-if)#exit

SW2(config)#interface ethernet 0/2 //进入接口E0/2

SW2(config-if)#switchport trunk encapsulation dot1q //接口封装DOT1Q

SW2(config-if)#switchport mode trunk //接口模式为trunk

SW2(config-if)#no shut //开启接口

SW2(config-if)#exit

SW2(config)#

 

Branch的配置(基本配置):

Router>enable //用户模式进入到特权模式

Router#configure terminal // 特权模式进入到全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname Branch //设备命名为Branch

Branch(config)#interface e0/1 //进入接口E0/1

Branch(config-if)#ip address 192.168.1.1 255.255.255.0 //接口IP配置

Branch(config-if)#no shutdown //开启接口

Branch(config-if)#

*Oct 27 00:50:10.770: %OSPF-5-ADJCHG: Process 110, Nbr 202.100.1.2 on Ethernet 0/1 from LOADING to FULL, Loading Done

Branch(config-if)#exit //退出接口配置模式

Branch(config)#interface ethernet 0/0 //进入接口E0/0

Branch(config-if)#no shutdown //开启接口

*Oct 27 00:50:37.516: %LINK-3-UPDOWN: Interface Ethernet0/0, changed state to up

*Oct 27 00:50:38.523: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/0, changed state to up

Branch(config-if)#interface ethernet 0/0.10 //进入子接口E0/0.10

Branch(config-subif)#encapsulation dot1q 10 //子接口封装dot1q

Branch(config-subif)#ip address 10.1.10.254 255.255.255.0 //子接口配置IP地址

Branch(config-subif)#no shutdown //开启子接口

Branch(config-subif)#interface ethernet 0/0.20 //进入到子接口E0/0.20

Branch(config-subif)#encapsulation dot1q 20 //子接口封装dot1q

Branch(config-subif)#ip address 10.1.20.254 255.255.255.0 //子接口配置IP地址

Branch(config-subif)#no shutdown //开启接口

Branch(config-subif)#

 

HQ的配置:

Router>enable //用户模式进入到特权模式

Router#configure terminal //特权模式进入到全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname HQ //设备命名为HQ

HQ(config)#interface ethernet 0/0 //进入到接口E0/0

HQ(config-if)#ip address 172.16.1.1 255.255.255.0 //接口配置IP地址

HQ(config-if)#no shutdown //开启接口

HQ(config-if)# ip ospf 110 area 0 //接口运行ospf协议

*Oct 27 00:44:15.029: %LINK-3-UPDOWN: Interface Ethernet0/0, changed state to up

*Oct 27 00:44:16.034: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/0, changed state to up

HQ(config-if)#exit //退出接口模式

HQ(config)#interface e0/1 // 进入接口E0/1

HQ(config-if)#ip address 192.168.1.2 255.255.255.0 // 接口配置IP地址

HQ(config-if)#no shutdown //开启接口

*Oct 27 00:45:10.178: %LINK-3-UPDOWN: Interface Ethernet 0/1, changed state to up

*Oct 27 00:45:11.185: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet 0/1, changed state to up

HQ(config-if)#ip ospf 110 area 0 //接口运行ospf协议

HQ(config-if)#

*Oct 27 00:46:03.504: %OSPF-5-ADJCHG: Process 110, Nbr 172.16.1.2 on Ethernet0/0 from LOADING to FULL, Loading Done

HQ(config-if)#exit //退出接口模式

HQ(config)#

 

Server的配置:

Router>enable //用户模式进入到特权模式

Router#configure terminal //特权模式进入到全局配置模式

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname Server // 设备命名为Server

Server(config)#no ip routing //关闭路由功能

Server(config)#ip default-gateway 172.16.1.1 //默认网关配置为172.16.1.1

Server(config)#interface ethernet 0/0 //进入接口E0/0

Server(config-if)#ip address 172.16.1.2 255.255.255.0 //接口配置IP地址

Server(config-if)#no shutdown //开启接口

Server(config-if)#exit //退出接口

*Oct 27 00:35:44.503: %LINK-3-UPDOWN: Interface Ethernet0/0, changed state to up

*Oct 27 00:35:45.511: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/0, changed state to up

Server(config)#

 

各个设备的测试结果:

(Branch设备不开启动态和静态路由,Server设备关闭的路由功能)

Server设备ping HQ设备:

Cisco设备上个实现NAT和PAT实验

 

Branch设备ping HQ设备:

Cisco设备上个实现NAT和PAT实验

 

设备测试:

Cisco设备上个实现NAT和PAT实验

 


Cisco设备上个实现NAT和PAT实验

 

HQ设备添加的配置:

HQ(config)#ip nat inside source static tcp 172.16.1.2 80 192.168.1.2 8888 extendable

//静态地址转换配置172.16.1.2的80端口转换为192.168.1.2的8888端口

HQ(config)#interface e0/0 //进入接口E0/0

HQ(config-if)#ip nat inside //定义inside接口

HQ(config-if)# interface e0/1 //进入接口E0/1

HQ(config-if)#ip nat outside //定义outside接口

Server设备配置:

Server(config)#ip http server //开启http server

测试结果:

使用:do show ip nat translations查看nat表

Cisco设备上个实现NAT和PAT实验

 


Cisco设备上个实现NAT和PAT实验

 

LAB2:

在Branch上部署PAT 使得PC1和PC2都能够访问互联网(能ping通192.168.1.2),Branch设备上不能写静态路由。

 

未开启PAT 转换时PC1和 PC2的测试:

Cisco设备上个实现NAT和PAT实验

 


Cisco设备上个实现NAT和PAT实验

 

HQ设备添加的配置:

Branch(config)#ip access-list standard NAT //定义标准的访问控制列表

Branch(config-std-nacl)#permit 10.1.0.0 0.0.255.255 //允许10.1.0.0/16网段的地址

Branch(config-std-nacl)#exit //退出访问控制配置

Branch(config)#ip nat inside source list NAT interface ethernet 0/1 overload //PAT地址转换

Branch(config)#interface e0/0.10 //进入接口E0/0.10

Branch(config-subif)#ip nat inside //配置nat inside

*Oct 27 11:10:10.480: %LINEPROTO-5-UPDOWN: Line protocol on Interface NVI0, changed state to up

Branch(config-subif)#interface e0/0.20 //进入接口E0/0.20

Branch(config-subif)#ip nat inside //配置nat inside

Branch(config-subif)#interface e0/1 //进入接口E0/1

Branch(config-if)#ip nat outside //配置nat outside

Branch(config-if)#

 

Branch和PC1和PC2测试结果:

Cisco设备上个实现NAT和PAT实验

 


Cisco设备上个实现NAT和PAT实验

 


Cisco设备上个实现NAT和PAT实验

 



Tags:Cisco   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
华为、H3C、CISCO三家交换机配置命令详解,这里对命令做了个汇总,平时对命令不熟的朋友这次可以看下。取消、关闭当前设置CISCO:noH3C:undoHUAWEI:undo 显示查看CISCO:showH3C:di...【详细内容】
2021-06-21  Tags: Cisco  点击:(148)  评论:(0)  加入收藏
switch> 用户模式1:进入特权模式 enableswitch> enableswitch#2:进入全局配置模式 configure terminalswitch> enableswitch#c onfigure terminalswitch(conf)#3:交换机命名 ho...【详细内容】
2020-11-23  Tags: Cisco  点击:(233)  评论:(0)  加入收藏
一、交换机访问控制安全配置 1、对交换机特权模式设置密码尽量采用加密和md5 hash方式switch(config)#enable secret 5 pass_string其中 0 Specifies an UNENCRYPTED passwo...【详细内容】
2020-07-03  Tags: Cisco  点击:(135)  评论:(0)  加入收藏
《网络安全法》和公安部82号令要求网络日志留存180天,为了满足国家网络安全法要求,企业客户通常会配置日志审计系统将网络日志进行集中存储,那么日志审计系统是如何将华为、Cis...【详细内容】
2020-06-29  Tags: Cisco  点击:(375)  评论:(0)  加入收藏
实验目的:1:在HQ上部署静态地址转换将Server的TCP 80端口 映射到 本设备公网IP地址(192.168.1.2)的 TCP 8888端口。2:在Branch上部署PAT 使得PC1和PC2都能够访问互联网(能ping通19...【详细内容】
2020-06-09  Tags: Cisco  点击:(70)  评论:(0)  加入收藏
在cisco 低端交换机中的实现方法:1.通过端口保护(Switchitchport protected)来实现的。2.通过PVLAN(private vlan 私有vlan)来实现.主要操作如下:相对来说cisco 3550或者295...【详细内容】
2020-03-13  Tags: Cisco  点击:(120)  评论:(0)  加入收藏
今天来给大家讲讲Cisco CGMP协议和RGMP协议。 CGMP协议,思科组管理协议: CGMP用来在二层网络限制多播流量。因为交换机不能查看三层数据包,也不能区分出IGMP包。使用了CGMP,路由...【详细内容】
2020-03-02  Tags: Cisco  点击:(96)  评论:(0)  加入收藏
1.设置主机名/系统名IOS:switch(config)# hostname "hostname"CLI:switch(enable) set system name name-string2.设置登录口令IOS:switch(config)# enable password level 1 pa...【详细内容】
2019-12-30  Tags: Cisco  点击:(95)  评论:(0)  加入收藏
VTP(VLAN Trunking Protocol):是VLAN中继协议,也被称为虚拟局域网干道协议。它是思科私有协议,作用是十几台交换机在企业网中,配置VLAN工作量大,可以使用VTP协议把一台交换机配置成...【详细内容】
2019-12-20  Tags: Cisco  点击:(147)  评论:(0)  加入收藏
Cisco 的 NAT 从来都是谜之难用,无论是 IOS 还是 ASA。在这里专门集中整理了一下 ASA NAT 的一些概念和基础配置案例,仅限于基础部分,实在是没有精力去深究。( ASA version 8.3...【详细内容】
2019-12-02  Tags: Cisco  点击:(219)  评论:(0)  加入收藏
▌简易百科推荐
这几年来,随着国家提速降费政策的执行,百兆网甚至千兆网已经步入千万寻常百姓家,而伴随这几年Wi-Fi技术的发展,Wi-Fi 6路由器也步入了平价时代。但甭管家里用的Wi-Fi 5还是Wi-Fi...【详细内容】
2021-12-16  中关村在线    Tags:Wi-Fi   点击:(12)  评论:(0)  加入收藏
静态NAT有些环境需要单独指定公网IP地址上网,可以使用静态NAT的方式来实现1、AR路由器的配置<Huawei>system-view #进入系统视图Enter system view, return user view with...【详细内容】
2021-12-15  sn7696    Tags:路由器配置   点击:(18)  评论:(0)  加入收藏
华为 1、配置设备间的网络互联。#配置设备各接口的IP地址,配置SwitchA。system-viewsysname switchAvlan batch 100 300interface gigabitethernet 1/0/1port link-type hyb...【详细内容】
2021-12-07  大海的日常随记    Tags:VRRP   点击:(19)  评论:(0)  加入收藏
当今时代,人人离不开网络。出门坐地铁乘公交都需要出示“健康码”,居家点外卖、打游戏、追剧都离不开流量。尤其是游戏玩家,想象一下,当你马上要“五杀”了,结果你的网络亮了红灯...【详细内容】
2021-12-01  限量版Rita    Tags:路由器   点击:(37)  评论:(0)  加入收藏
路由器安装设置共分两个步骤,依次是”路由器与光猫“串联,“宽带账号写入路由器”即可,接下来我就讲解操作步骤。 步骤一首先将路由器与光猫串联,用网线一端连接至“光猫”的LAN...【详细内容】
2021-11-22  电脑技师大明    Tags:路由器   点击:(36)  评论:(0)  加入收藏
无线路由器的使用方法通常是插上网线,让设备发出WIFI无线信号,所有的无线设备都是通过这个WIFI信号接入互联网、或者局域网中,这是把有线转成无线的典型应用,平时我们见到最多的...【详细内容】
2021-11-15  奥赛德邢老师    Tags:WiFi信号   点击:(35)  评论:(0)  加入收藏
当电脑无法上网,显示电脑连不上wifi的时候怎么办呢?很多网友都遇到过这种问题,不知道为什么连不上wifi?导致出现这个问题的原因很多,下面小编就教下大家常见的详解为什么电...【详细内容】
2021-11-10  小白系统    Tags:无线网络   点击:(52)  评论:(0)  加入收藏
如何在windows 10电脑上添加删除静态路由环境和需求:假设本机电脑是192.168.0.0/24网段,现在电脑要访问一个172.16.10.0/24的网段,现在没有可达路由,就需要手动添加静态路由了...【详细内容】
2021-11-05  菜鸟年华记    Tags:静态路由   点击:(60)  评论:(0)  加入收藏
采用VXLAN实现不同站点主机跨三层网络实现二层互通:PCA和PCB分别模拟两个不同站点的主机; PCA和PCB处在不同VLAN,但处于同一个VXLAN; 通过配置VXLAN实现PCA和PCB之间跨三层的二...【详细内容】
2021-11-05  wljslmz    Tags:H3C交换机   点击:(49)  评论:(0)  加入收藏
随着时代的发展,多数朋友家中都已接入有线宽带,在畅游网络的同时也并发着诸多问题。比如部分房间WIFI信号始终只有1至2格,这样将会大大降低无线网络的利用率。这时我们便可以通...【详细内容】
2021-10-29  玩手机的张先生    Tags:有线桥接   点击:(70)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条