- 论坛徽章:
- 0
|
无编址?不是这么说的吧,我理解在cisco里有项技术跟说的这个无编址差不多。。。
What is an Unnumbered Interface?
Consider the network shown below. Router A has a serial interface S0 and an Ethernet interface E0.
![]()
Router A's Ethernet 0 interface can be configured with an IP address as shown below:
interface Ethernet0
ip address 172.16.10.254 255.255.255.0
Logically, to enable IP on interface S0, you would need to configure a unique IP address on it. However, it is also possible to enable IP on the Serial interface and bring it up without assigning a unique IP address to it. This is done by borrowing an IP address already configured on one of the router's other interfaces. To do this, the ip unnumbered interface mode command is used as shown below.
interface Serial 0
ip unnumbered Ethernet 0
The ip unnumbered <type> <number> interface mode command borrows the IP address from the specified interface to the interface on which the command has been configured. Use of the ip unnumbered command results in the IP address being shared by two interfaces. Thus, in our example, the IP address which was configured on the Ethernet interface is also assigned to the Serial interface, and both interfaces involved function normally. This can be verified using the output of the show ip interface brief command, as shown below:
RouterA# show ip interface brief
Interface IP-Address OK? Method Status Protocol
Ethernet0 172.16.10.254 YES manual up up
Serial0 172.16.10.254 YES manual up up
但trace的结果应该和这个没有关系的。。。 |
|