基于网络拓扑图通过RCMS对网络进行配置

时间:2024-01-29 19:51:58

基于网络拓扑图通过RCMS对网络进行配置

一些基本命令

enable #进入配置
show running #显示所有配置
no xxx #删除某个配置
#tab键自动补全  

对网络拓扑图1的简单配置

图1

二层交换机S3

1.配置vlan200,300

vlan range 200,300   

2.将对应端口划分到相应的vlan中

switch access vlan xxx    

3.将相应端口配置为trunker

switch mode trunk

三层交换机 S2

1.配置vlan200,300

vlan range 200,300   

2.将对应端口划分到相应的vlan中

switch access vlan xxx    

3.将相应端口配置为trunker

switch mode trunk  

4.将与ftp服务器相连接的端口置为三层端口,并添加网关

inter eth 0/18  

no switch  

ip address xxx.xxx.xxx.xxx 255.255.255.0 

5.为三层接口vlan200和vlan300配置网关

interface vlan xxx  

ip address xxx.xxx.xxx.xxx 255.255.255.0 

实验结果

PC1 ping 的结果:
PC1

PC2 ping 的结果:
PC2

PC3 ping 的结果:
PC3

对网络拓扑图2的简单配置

图2

NAT、ACL配置公网IP

1.路由器1的配置

ip route 0.0.0.0 0.0.0.0 123.1.1.2 #出去到公网
ip route 192.168.2.0 255.255.255.0 10.1.1.2 #可以进入,通过一个接往内网的接口
ip route 192.168.3.0 255.255.255.0 10.1.1.2 #可以进入
#NAT、ACL的配置
interface FastEthernet 0/x #配置内部端口
ip nat inside
ip address 10.1.1.1 255.255.255.0

interface FastEthernet 0/x #配置外部端口
ip nat outside
ip address 123.1.1.1 255.255.255.0

ip nat pool test 12.11.1.6 12.11.1.15 netmask 255.255.255.0 #定义合法IP池

ip access-list stand 1 #创建ACL列表
10 permit 192.168.2.0 0.0.0.255 
10 permit 192.168.3.0 0.0.0.255

ip nat inside source list 1 pool test overload #端口复用
ip nat inside source static tcp 192.168.1.0 80 10.1.1.2 80
ip nat inside source static tcp 192.268.2.0 221 12.11.1.6 21

2.三层交换机2的配置

#trunk的配置
......
#添加网关
inter eth 0/x
no switch
ip address 10.1.1.2 255.255.255.0
#添加路由表
ip route 0.0.0.0 0.0.0.0 10.1.1.1 #出去到公网
#为三层接口vlan200和vlan300配置网关
......

3.三层交换机1的配置

#两个端口定义网关
......  

4.路由器2的配置

...

5.配置后的的路由器、交换机的配置show running

![an image](https://images.cnblogs.com/cnblogs_com/yaliyalimayali/1554740/o_三层交换机1.JPG)三层交换机1的配置
![an image](https://images.cnblogs.com/cnblogs_com/yaliyalimayali/1554740/o_三层交换机2.JPG)三层交换机2的配置
![an image](https://images.cnblogs.com/cnblogs_com/yaliyalimayali/1554740/o_二层交换机.JPG)二层交换机的配置
![an image](https://images.cnblogs.com/cnblogs_com/yaliyalimayali/1554740/o_路由器1.JPG)路由器1的配置
![an image](https://images.cnblogs.com/cnblogs_com/yaliyalimayali/1554740/o_路由器2.JPG)路由器2的配置

6.配置后内网中的机器可以远程桌面连接FTP服务器

登陆远程桌面