The primary use of ifconfig is to set up a network
device to use a particular IP address. ifconfig
can also be used to set network options and aliases. To bring up an
interface (in this case, rl0) on 192.168.1.1 with
normal settings for a /24 network:
# ifconfig rl0 inet 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255 up
To temporarily bring a network interface down and then back up later,
something that can be useful for maintenance:
# ifconfig rl0 down
# ...maintenance operations...
# ifconfig rl0 up
-- DJPH
 |  |  |
44.7. Loopback Mounts |  | 44.9. Mounting Network Filesystems -- NFS, SMBFS |