reserved addresses

Is it possible to create a loopback address as 192.168.1.255 /32 Or is the .255 always reserved?

If this is Not allowed can you please try to enter this (into a cisco router ) and paste the router output error message.

Thank you

Reply to
ciscortp
Loading thread data ...

All valid class a,b or c addresses are allowed...

rtr#conf t Enter configuration commands, one per line. End with CNTL/Z. rtr(config)#int lo99 rtr(config-if)#ip address 192.168.1.255 255.255.255.255 rtr(config-if)# rtr(config-if)#ip address 0.0.0.0 255.255.255.255 Not a valid host address - 0.0.0.0 rtr(config-if)# rtr(config-if)#ip address 1.0.0.0 255.255.255.255 rtr(config-if)# rtr(config-if)#ip address 1.0.0.255 255.255.255.255 rtr(config-if)# rtr(config-if)#ip address 1.255.255.255 255.255.255.255 rtr(config-if)# rtr(config-if)#ip address 0.0.0.1 255.255.255.255 Not a valid host address - 0.0.0.1 rtr(config-if)#ip address 255.0.0.1 255.255.255.255 Not a valid host address - 255.0.0.1 rtr(config-if)#

As long as they don't overlap with other interfaces..

rtr(config-if)#ip address 192.168.24.99 255.255.255.0 % 192.168.24.0 overlaps with Ethernet0 rtr(config-if)# rtr(config-if)#ip address 192.168.24.99 255.255.255.255 % 192.168.24.99 overlaps with Ethernet0 rtr(config-if)#

And as long as it is not the network or broadcast address for the mask chosen:

rtr(config-if)#ip address 10.0.0.255 255.255.255.0 Bad mask /24 for address 10.0.0.255 rtr(config-if)# rtr(config-if)#ip address 10.0.255.255 255.255.0.0 Bad mask /16 for address 10.0.255.255 rtr(config-if)# rtr(config-if)#ip address 10.0.255.254 255.255.0.0 rtr(config-if)# rtr(config-if)#ip address 10.0.0.0 255.255.0.0 Bad mask /16 for address 10.0.0.0 rtr(config-if)#

Reply to
Joop van der Velden

You can not confugure an IP address with all "1s" in the host portion of address. It's reserved for "broadcast" address, same way as all "0s" reserved for "network address". And even with the fact that you may be able to configure this address, you will be unable to do anything with it.

Good luck,

Mike

Reply to
HeadsetAdapter.com

There are special rules for /31 and /32, especially in connection with point-to-point links.

Reply to
Walter Roberson

Yes it is. All of our routers use a /32 for their loopback addresses.

Reply to
thrill5

Cabling-Design.com Forums website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.