发布网友 发布时间:2022-05-01 07:46
共5个回答
热心网友 时间:2023-10-09 19:50
不是你这么设置的,根据你上述应该是你没有关闭路由功能或选择了其他的网卡,要选择NM-16ESW网卡。
路由器设置如下
enable
configure terminal
interface fastEthernet 0/0.10 直接接子接口
encapsulation dot1Q 20 封装路由器802.1q VLAN ID 20
ip address 20.20.20.1 255.255.255.0 配置VLAN10网关地址
no shutdown 不关闭
interface fastEthernet 0/0.20 直接接子接口
encapsulation dot1Q 20 意思和VLAN10一样
ip address 20.20.20.1 255.255.255.0 配置VLAN20网关地址
no shutdown 不关闭
exit 退出
service dhcp 开启DHCP服务器
ip dhcp pool VLAN10 创建地址池名为VLAN10
network 10.10.10.0 255.255.255.0 设置网段
default-router 10.10.10.1 设置网关
dns-server 8.8.8.8 设置DNS
exit 退出
ip dhcp pool VLAN20 创建地址池名为VLAN20
network 20.20.20.0 255.255.255.0 设置网段
default-router 20.20.20.1 设置网关
dns-server 8.8.8.8 设置DNS
end 退到特权模式
write 完成。如果要设置本征VLAN的话直接进f0/0口设置地址就可以了
交换机---------------------------------
交换机以f0/0封装802.1q协议,划分f0/1到VLAN10,f0/2到VLAN20为列:
enable 进到特权模式
vlan database 进入VLAN数据库
vlan 10 创建 VLAN10
vlan 20 创建 VLAN20
exit 退出
configure terminal 进到全局模式
no ip routing 关闭路由功能
interface fastEthernet 0/0 进入接口
switchport mode trunk 转化为trunk模式(中继)
switchport trunk encapsulation dot1q 指定trunk用802.1q协议
no shutdown 不关闭
do show interfaces trunk 查询trunk接口
exit 退出
interface fastEthernet 0/1 进入F0/1接口
switchport mode access 转换接口模式为access
switchport access vlan 10 把接口划分到VLAN10
no shutdown 不关闭
interface fastEthernet 0/2 进入F0/2接口
switchport mode access 转换接口模式为access
switchport access vlan 20 把接口划分到VLAN20
no shutdown 不关闭
end 退到特权模式
write 保存
CP1和CP2分别插到F0/1和F0/2口
直接拿路由器模拟
PC1
conf t
int f0/0
ip add dhcp
no sh
PC2
conf t
int f0/0
ip add dhcp
no sh
我也是走了好多弯路才摸索出来的,以上命令可以直接用,卧槽,我还以为我弄错了,查不到trunk口,关闭下GNS3在启动就正常了。我的是低版本GNS3.
热心网友 时间:2023-10-09 19:50
默认封装的就是dot1q,可以通过配置switchport mode trunk,然后在特权模式下用命令show interface trunk来查看,默认封装的是dot1q,且DTP模式默认是on热心网友 时间:2023-10-09 19:51
因为二层交换机默认封装dot1q,用三层交换机可以有这个命令热心网友 时间:2023-10-09 19:51
你用的什么模拟器呀?gns3么?模拟器有很多bug的,很难做到完美,推荐你还是去机房拿真机练练手热心网友 时间:2023-10-09 19:52
原来我也遇到过这个问题,好像不是模拟器的问题,而是实际机器都是这样。具体应该是前面还要有一句什么才可以。你多试试,我那台机器已经不在手边了,所以没有办法找到。