HQ>enable
Password:
HQ#config terminal
Enter configuration commands, one per line. End with CNTL/Z.
HQ(config)#int s0/0
HQ(config-if)#ip add 209.165.201.3 255.255.255.252
Bad mask /30 for address 209.165.201.3
HQ(config-if)#
我该如何改变?
答案1
由于209.165.201.3
是网络中的最后一个 IP 地址209.165.201.0/30
,因此是广播地址,不能用作网络内的主机。
答案2
使用 255.255.255.252 子网掩码,您指定的 IP 地址是广播地址
BROADCAST=209.165.201.3
NETWORK=209.165.201.0
您只能使用 209.165.201.1 或 209.165.201.2 作为 IP 地址。