补充

 在思科路由器上配置子接口(Subinterface)时,需要对子接口进行封装(encapsulation),通常用于配置VLAN。封装命令是:

```

Router(config)# interface [interface_type] [slot_#/port_#.subinterface_number]

Router(config-subif)# encapsulation dot1Q [VLAN_ID]

```

其中,`[interface_type] [slot_#/port_#.subinterface_number]` 是指定主接口的类型和编号,例如 `FastEthernet0/0.1`,后面跟着子接口编号。`[VLAN_ID]` 是指定的VLAN编号。

例如,如果您想在FastEthernet0/0接口的第一个子接口上设置VLAN 10的封装,命令如下:

```

Router(config)# interface FastEthernet0/0.1

Router(config-subif)# encapsulation dot1Q 10

Router(config-subif)# ip address [IP_ADDRESS] [SUBNET_MASK]

```

替换`[IP_ADDRESS]`和`[SUBNET_MASK]`为实际的IP地址和子网掩码。

评论

热门博文