DSL Tips and Tricks :: Network



How to set up network?
ip:          82.119.xxx.134
netmask: 255.255.255.252
gw:        82.119.xxx.135

how to calculate 'broadcast' and 'network' ?


:(((

Quote (stand @ Dec. 25 2005,07:52)
How to set up network?
ip:          82.119.xxx.134
netmask: 255.255.255.252
gw:        82.119.xxx.135

how to calculate 'broadcast' and 'network' ?


:(((

Your range is 132-135
.132 is your network
.135 is your broadcast

Go to a shell prompt and try the command ipcalc

$ ipcalc --help  Will show options. -b for broadcast -n for network

$ ipcalc -b 82.119.255.134 255.255.255.252
BROADCAST=82.119.255.135

$ ipcalc -n 82.119.255.134 255.255.255.252
NETWORK=82.119.255.132

Thanks!!!

original here.