E600 教育网系列交换机配置指南-IP业务
1 IP地址配置
操作步骤
步骤1执行命令system-view,进入系统视图。
步骤2执行命令interface interface-type interface-number,进入接口视图。
说明设备上的物理口只能工作在二层模式,因此不能配置IP地址。只有VLANIF接口和Loopback接口上可以配置IP地址。
步骤3执行命令ip address ip-address { mask | mask-length } sub,配置从IP地址。
缺省情况下,接口上没有配置从IP地址。----结束
1.3.3 检查配置结果
操作步骤
ll
执行命令display ip interface brief [ interface-type [ interface-number ] ]或者displayip interface [ interface-type interface-number ],查看接口的IP配置信息。
执行命令display interface [ interface-type [ interface-number ] ],查看接口的信息。
----结束
1.4 配置举例
介绍IP地址配置举例,包括配置接口的主从IP地址示例。
1.4.1 配置接口的主从IP地址示例
组网需求
如图1-6所示,Switch上只有一个空闲以太网接口GE0/0/1,但该局域网中的计算机分别属于2个不同的网段172.16.1.0/24和172.16.2.0/24,要求通过Switch可以实现一个接口接入两个不同的网段。图1-6 配置IP地址示例
Switch
GE0/0/1VLANIF100172.16.1.1/24172.16.2.1/24 sub172.16.1.3/24172.16.1.2/24172.16.2.3/24172.16.2.2/24
文档版本 07 (2018-09-25)
版权所有 ? 华为技术有限公司
11
E600 教育网系列交换机配置指南-IP业务
1 IP地址配置
配置思路
配置主从IP地址的思路如下:
配置主从IP地址,实现一个接口可以接入两个不同网段。
操作步骤
步骤1配置Switch的GE0/0/1接口所属VLANIF100接口的IP地址
[Switch] interface gigabitethernet 0/0/1
[Switch-GigabitEthernet0/0/1] port link-type hybrid[Switch-GigabitEthernet0/0/1] port hybrid pvid vlan 100[Switch-GigabitEthernet0/0/1] port hybrid untagged vlan 100[Switch-GigabitEthernet0/0/1] quit[Switch] interface vlanif 100
[Switch-Vlanif100] ip address 172.16.1.1 24[Switch-Vlanif100] ip address 172.16.2.1 24 sub[Switch-Vlanif100] quit[Switch] quit
步骤2验证配置结果
# 从Switch上Ping网段172.16.1.0内的主机,能够Ping通。
PING 172.16.1.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.1.2: bytes=56 Sequence=1 ttl=255 time=25 ms Reply from 172.16.1.2: bytes=56 Sequence=2 ttl=255 time=27 ms Reply from 172.16.1.2: bytes=56 Sequence=3 ttl=255 time=26 ms Reply from 172.16.1.2: bytes=56 Sequence=4 ttl=255 time=26 ms Reply from 172.16.1.2: bytes=56 Sequence=5 ttl=255 time=26 ms --- 172.16.1.2 ping statistics --- 5 packet(s) transmitted 5 packet(s) received 0.00% packet loss
round-trip min/avg/max = 25/26/27 ms
# 从Switch上Ping网段172.16.2.0内的主机,能够Ping通。
PING 172.16.2.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.2.2: bytes=56 Sequence=1 ttl=255 time=25 ms Reply from 172.16.2.2: bytes=56 Sequence=2 ttl=255 time=26 ms Reply from 172.16.2.2: bytes=56 Sequence=3 ttl=255 time=26 ms Reply from 172.16.2.2: bytes=56 Sequence=4 ttl=255 time=26 ms Reply from 172.16.2.2: bytes=56 Sequence=5 ttl=255 time=26 ms --- 172.16.2.2 ping statistics --- 5 packet(s) transmitted 5 packet(s) received 0.00% packet loss
round-trip min/avg/max = 25/25/26 ms
----结束
配置文件
Switch的配置文件
#
sysname Switch#
vlan batch 100
文档版本 07 (2018-09-25)版权所有 ? 华为技术有限公司12
E600 教育网系列交换机配置指南-IP业务
#
interface Vlanif100
ip address 172.16.1.1 255.255.255.0 ip address 172.16.2.1 255.255.255.0 sub#
interface GigabitEthernet0/0/1 port link-type hybrid port hybrid pvid vlan 100 port hybrid untagged vlan 100#
return
1 IP地址配置
1.5 常见配置错误
介绍常见配置错误的案例,避免在配置阶段引入故障。
1.5.1 接口下配置IP地址不成功
故障分析
接口下配置IP地址过程中出现错误,导致IP地址配置不成功。
操作步骤
l
根据表1-7检查错误提示信息,并对照采取故障排除方法。表1-7 错误提示信息及对应的故障排除方法错误提示信息Error: The specified IPaddress is invalid.错误提示信息解释无效的IP地址,IP地址或子网掩码错误。故障排除方法请检查后重新配置。lIP地址是否属于常用的A、B、C三类IP地址中的一种。l子网掩码是否正确。Error: The specifiedaddress conflicts withanother address.Error: The specifiedprimary address doesnot exist.IP地址冲突,本设备的其他接口已使用了相同网段的IP地址。删除的主地址不存在。说明一个接口只能有一个主IP地址,当配置主IP地址时,如果接口上已经有主IP地址,则原主IP地址被删除,新配置的地址成为主IP地址。请使用其他网段IP地址进行配置。无需执行删除操作。Error: Please configurethe primary address inthe interface view first.设备没有配置主IP,所以无法配置从IP。先给设备配置主IP地址。文档版本 07 (2018-09-25)版权所有 ? 华为技术有限公司13
E600 教育网系列交换机配置指南-IP业务
1 IP地址配置
错误提示信息Error: The number ofaddresses of thespecified interfacereached the upper limit(15).错误提示信息解释在接口上配置的从IP地址超过最大数目,无法继续配置从IP地址。说明默认情况下,每个接口下最多可以配置15个IP地址。故障排除方法-Error: Please delete thesub address in theinterface view first.Error: The specifiedaddress cannot bedeleted because it is notthe primary address ofthis interface.Error: The specified subaddress does not exist.Error: The addressalready exists. ----结束
无法删除主IP地址。请先删除接口下所有的从IP地址,再删除主IP地址。请执行删除从IP地址的命令undo ip address ip-address{ mask | mask-length } sub。无法删除从IP地址,无法使用删除主IP地址的命令删除从IP地址。删除的从IP地址不存在。接口下已经有相同的IP地址了,应该配置其他的IP地址。无需执行删除操作。请使用其他的IP地址进行配置。1.6 参考信息
介绍了IPv4的参考信息。本特性的参考资料清单如下:文档RFC1166RFC1918描述Internet NumbersAddress Allocation for PrivateInternets备注--文档版本 07 (2018-09-25)版权所有 ? 华为技术有限公司14