单臂路由实验记录

本文记录了一次单臂路由实验的过程,详细介绍了如何配置交换机和路由器接口,包括VLAN划分、Trunk设置、NAT转换以及访问控制列表的应用,以实现不同VLAN间的通信和外部网络的连接。

拓扑图:



switch配置:

interface Ethernet0/0
 switchport access vlan 10
 duplex auto
!
interface Ethernet0/1
 switchport access vlan 20
 duplex auto
!
interface Ethernet0/2
 switchport trunk encapsulation dot1q
 switchport mode trunk
 duplex auto
!
interface Ethernet0/3
 switchport access vlan 30
 duplex auto
!
interface Vlan1
 no ip address
 shutdown
!
!
ip forward-protocol nd
no ip http server


R1配置:

interface Ethernet0/0
 no ip address
!
interface Ethernet0/0.1
 encapsulation dot1Q 10
 ip address 192.168.1.1 255.255.255.0
 ip nat inside                                        //注意,ip nat inside要应用于子接口上
 ip virtual-reassembly in
!
interface Ethernet0/0.2
 encapsulation dot1Q 20
 ip address 192.168.2.1 255.255.255.0
 ip nat inside
 ip virtual-reassembly in
!
interface Ethernet0/0.3
 encapsulation dot1Q 30
 ip address 192.168.3.1 255.255.255.0
!
interface Ethernet0/1
 ip address 8.8.8.8 255.255.255.0
 ip nat outside
 ip virtual-reassembly in
!
interface Ethernet0/2
 no ip address
 shutdown
!
interface Ethernet0/3
 no ip address
 shutdown
!
ip forward-protocol nd
!
!         
no ip http server
no ip http secure-server
ip nat inside source list 100 interface Ethernet0/1 overload
ip route 0.0.0.0 0.0.0.0 8.8.8.9
!
access-list 100 permit ip 192.168.1.0 0.0.0.255 any
access-list 100 permit ip 192.168.2.0 0.0.0.255 any
!
!
!
control-plane
!
!
!
!
!
!
!
line con 0
 logging synchronous
line aux 0
line vty 0 4
 login    
 transport input all
!
!
end




R2配置:

interface Ethernet0/0
 ip address 8.8.8.9 255.255.255.0
!
interface Ethernet0/1
 no ip address
 shutdown
!
interface Ethernet0/2
 no ip address
 shutdown
!
interface Ethernet0/3
 no ip address
 shutdown
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值