单臂路由器配置 代码 思科

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/cczx139/article/details/64126849

拓扑图




switch代码

Switch>enable 
Switch#conf terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#exit
Switch(config)#vlan 20
Switch(config-vlan)#exit
Switch(config)#int fa0/1
Switch(config-if)#switchport access vlan 10
Switch(config-if)#exit
Switch(config)#int fa0/2
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit
Switch(config)#end


%SYS-5-CONFIG_I: Configured from console by console
Switch#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.


Switch(config)#int fa0/24
Switch(config-if)#switchport mode trunk 
Switch(config-if)#end


router代码


Router>enable 
Router#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int fa0/0
Router(config-if)#no ip address 
Router(config-if)#no shutdown 


%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up


Router(config-if)#int
                   ^
% Invalid input detected at '^' marker.

Router(config-if)#exit


Router(config)#interface fa0/0.10


%LINK-5-CHANGED: Interface FastEthernet0/0.10, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to up
Router(config-subif)#interface fa0/0.10
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip address 192.168.1.254 255.255.255.0


Router(config-subif)#no shutdown 
Router(config-subif)#
Router(config-subif)#int fa0/0.20


%LINK-5-CHANGED: Interface FastEthernet0/0.20, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.20, changed state to up


Router(config-subif)#int fa0/0.20
Router(config-subif)#encapsulation dot1Q 20
Router(config-subif)#ip address 192.168.2.254 255.255.255.0
Router(config-subif)#no shutdown 
Router(config-subif)#end

猜你喜欢

转载自blog.csdn.net/cczx139/article/details/64126849