本文目录一览:
单臂路由主要干什么用 具体 有什么用处
单臂路由就是在路由器以太网接口下配置若干个子接口,每个子接口对应一个VLAN,这样当路由器的以太网口连接到一个划分VLAN的二层交换机时,可以通过路由器的以太网口,实现二层交换机上多个VLAN之间的互通。
而三层交换机的VLAN之间互通,则不需要路由器的配合,可在三层交换机上直接配置VLAN虚接口,每个VLAN一个虚接口,并指定IP,通过VLAN虚接口实现交换机各个VLAN之间的互通。
路灯种类
1、按路灯高度分:高杆灯、中杆灯、道路灯、庭院灯、草坪灯、地埋灯。
2、按路灯灯杆材质分:热镀锌铁质路灯,热镀锌钢质路灯与不锈钢路灯。
3、按路灯光源分:钠灯路灯,LED路灯,节能路灯、新型索明氙气路灯。
4、按造型分:中华灯、仿古灯、景观灯、单臂路灯,双臂路灯。
5、按供电方式分:市电路灯、太阳能路灯、风光互补路灯。
请教大家什么是单臂路由
单臂路由解决的是不同子网间的通信问题,它是用一个物理接口来划分出多个逻辑子接口来当做物理接口来用,这样可以节约真正的物理接口。单臂路由比较适合大部分报文在子网内传输,少量的报文通过路由器进行传输的网络环境。单臂路由主要体现在交换机和路由器之间的通信链路只有一条。也就是使用路由器的一个接口,实现子网之间的通信。比如,你先用一个20口交换机连接20台PS 然后用交换机中的第一个端口(其他端口我没试过,不过应该可以,因为现在的交换机大多是自适应的)连接路由器任意一个子网接口,路由器的WLAN口连接外网。这里的交换机就起到了节约物理接口的作用,不然你4口的路由就只能接4台PC... 怎么用就看你自己了,公司、寝室、学校机房等等地方都可以用
单臂路由大概什么意思?
单臂路由
目标:通过路由器进行多个VLAN互联
环境:1. 交换机为二层交换机,支持VLAN划分;2. 路由器只有1个Ethernet接口
实施:采用单臂路由,即在路由器上设置多个逻辑子接口,每个子接口对应于一个VLAN。由于物理路由接口只有一个,各子接口的数据在物理链路上传递要进行标记封装。Cisco设备支持ISL和802.1q协议。华为设备只支持802.1q。
单臂路由的配置实例
2600 IOS需求:IP Plus (c2600-ik8s-mz-122.15.T.bin)
Current configuration:
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname c2600
!
no logging console
enable password mysecret
!
!
!
!
!
ip subnet-zero
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
!
interface FastEthernet0/0.1
encapsulation isl 1
ip address 10.10.10.1 255.255.255.0
no ip redirects
!
!-- If 802.1Q is configured,
!-- you will instead see the following output
!-- under interface FastEthernet0/0.1:
!-- interface FastEthernet0/0.1
!-- encapsulation dot1Q 1 native
!-- ip address 10.10.10.1 255.255.255.0
!
!
interface FastEthernet0/0.2
encapsulation isl 2
ip address 10.10.11.1 255.255.255.0
no ip redirects
!
!-- If 802.1Q is configured,
!-- you will instead see the following output
!-- under interface FastEthernet0/0.2:
!-- interface FastEthernet0/0.2
!-- encapsulation dot1Q 2
!-- ip address 10.10.11.1 255.255.255.0
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
ip classless
no ip http server
!
!
!
line con 0
transport input none
line aux 0
line vty 0 4
password mysecret
login
!
no scheduler allocate
end