- để giả lập được switch layer 3, sử dụng no switchport trên interface của switch dùng module NM-16ESW, khi dùng no switchport => switch sẽ chuyển thành layer 3 và bạn có thể cấu hình IP cho các Interface.
- vd một file .net về giả lập Switch L3 với NM-16ESW
- cấu hình switch:
- cấu hình router:
- ktra ping từ R1 đến SW:
R1#ping 192.168.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 120/232/424 ms
Chú ý: switch layer 3 có 2 lệnh bạn cần cấu hình là
no switchport : chuyển từ L2 -> L3 : để có thể gán IP cho interface của switch.
ip routing : cho phép routing, dùng lệnh này nếu trước đó đã dùng no ip routing (or ip routing is diabled).
- vd một file .net về giả lập Switch L3 với NM-16ESW
#simulate Layer 3 switch
#with c3640-jk9o3s-mz.123-14.T7.extracted.bin IOS
[localhost]
[[3745]]
image = D:\dynagenlabs\images\c3745-js-mz.123-17a.bin
ram = 128
[[Router R1]]
model = 3745
console = 2001
slot 1 = NM-1FE-TX
idlepc = 0x8000a7b4
f1/0 = SW f0/0
#switch layer 3
[[3640]]
image = D:\dynagenlabs\images\c3640-jk9o3s-mz.123-14.T7.extracted.bin
ram = 128
[[Router SW]]
model = 3640
console = 2002
slot 0 = NM-16ESW
idlepc = 0x60566918
#with c3640-jk9o3s-mz.123-14.T7.extracted.bin IOS
[localhost]
[[3745]]
image = D:\dynagenlabs\images\c3745-js-mz.123-17a.bin
ram = 128
[[Router R1]]
model = 3745
console = 2001
slot 1 = NM-1FE-TX
idlepc = 0x8000a7b4
f1/0 = SW f0/0
#switch layer 3
[[3640]]
image = D:\dynagenlabs\images\c3640-jk9o3s-mz.123-14.T7.extracted.bin
ram = 128
[[Router SW]]
model = 3640
console = 2002
slot 0 = NM-16ESW
idlepc = 0x60566918
Router(config)#hostname SW
SW(config)#int range fa 0/0 -15
SW(config-if-range)#shut
SW(config-if-range)#no switchport
#cau hinh interface fa0/0
SW(config)#int fa0/0
SW(config-if)#ip address 192.168.0.2 255.255.255.0
SW(config-if)#no shut
*Mar 1 00:20:35.587: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern
et0/0, changed state to up
SW(config-if)#exit
#cau hinh ip routing (if ip routing disable)
SW(config)#ip routing
SW(config)#int range fa 0/0 -15
SW(config-if-range)#shut
SW(config-if-range)#no switchport
#cau hinh interface fa0/0
SW(config)#int fa0/0
SW(config-if)#ip address 192.168.0.2 255.255.255.0
SW(config-if)#no shut
*Mar 1 00:20:35.587: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern
et0/0, changed state to up
SW(config-if)#exit
#cau hinh ip routing (if ip routing disable)
SW(config)#ip routing
R1(config)#int f1/0
R1(config-if)#ip add
R1(config-if)#ip address 192.168.0.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#ip add
R1(config-if)#ip address 192.168.0.1 255.255.255.0
R1(config-if)#no shut
R1#ping 192.168.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 120/232/424 ms
Chú ý: switch layer 3 có 2 lệnh bạn cần cấu hình là
no switchport : chuyển từ L2 -> L3 : để có thể gán IP cho interface của switch.
ip routing : cho phép routing, dùng lệnh này nếu trước đó đã dùng no ip routing (or ip routing is diabled).
Comment