我无法封装在路由器上

网络工程 转变 路由器 局域网 树干
2022-02-18 10:42:25

我有 VLAN10 和 VLAN20,我正在尝试在以下设置中使用相同 VLAN 的计算机之间进行通信:

在此处输入图像描述

我想从路由器应用封装,但它似乎无法识别相应的命令。报告如下:

R14(config)#int gig2/2
R14(config-if)#int gig2/2.10
               ^
% Invalid input detected at '^' marker.
    
R14(config-if)#exit
R14(config)#int gig2/1
R14(config-if)#int gig2/2.10
               ^
% Invalid input detected at '^' marker.
    
R14(config-if)#
R14#

这是路由器的运行配置:

R14#show running-config
Building configuration...

Current configuration : 1257 bytes
!
version 15.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname R14
!
!
boot system flash cgr1000-universalk9-mz.SPA.154-2.CG 
!
!
!
!
!
!
no ip cef
no ipv6 cef
!
!
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface GigabitEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface FastEthernet2/3
 switchport mode access
 switchport nonegotiate
!
interface FastEthernet2/4
 switchport mode access
 switchport nonegotiate
!
interface FastEthernet2/5
 switchport mode access
 switchport nonegotiate
!
interface FastEthernet2/6
 switchport mode access
 switchport nonegotiate
!
interface GigabitEthernet2/1
 switchport mode trunk
!
interface GigabitEthernet2/2
 switchport mode trunk
!
interface Dot11Radio2/1
 no ip address
 shutdown
!
interface Vlan1
 ip address 192.168.10.1 255.255.255.0
!
ip classless
!
ip flow-export version 9
!
!
access-list 10 permit 192.168.10.0 0.0.0.255
access-list 10 deny 192.168.20.0 0.0.0.255
access-list 20 permit 192.168.20.0 0.0.0.255
access-list 20 deny 192.168.10.0 0.0.0.255
access-list 30 permit any
!
!
!
!
!
!
line con 0
!
line 1/1 1/2
 stopbits 1
!
line 1/3 1/6
 stopbits 1
!
line vty 0 4
 login
!
!
!
!
end

不知道是否相关,但我已将交换机和路由器的 vlan 1 ip 地址调整为 192.168.10.1 。

为什么路由器无法识别此命令,我该如何解决?

2个回答

问题是路由器的插槽 2(G2/1-2 和 F2/3-2)中的所有接口都是交换机接口,您试图将它们用作路由器接口,但这不起作用。

您需要为这些接口做的是为各种 VLAN 创建 SVI,然后将交换机接口分配给特定的 VLAN,作为访问接口或中继接口。

就像是:

interface Vlan10
 ip address <address> <mask>
!
interface Vlan20
 ip address <address> <mask>
!
interface FastEthernet2/2
 switchport mode access
 switchport access vlan 10
!
interface FastEthernet2/3
 switchport mode access
 switchport access vlan 20
!
interface FastEthernet2/4
  switchport mode trunk
  switchport trunk vlan allowed 10,20
!

您的拓扑似乎不正确 服务器不应与路由器接口连接。

您可以通过用第 3 层交换机替换路由器来优化您的要求,SVI switch Virtual Interface configuration with VLAN 10 ,VLAN 20 ,VLAN 30 请尝试以下拓扑

网络图

在此处输入图像描述