1. Create the TCP/IP stack - The interface will not show in ifconfig until you do this:
  2.   # ifconfig hme0 plumb
    
    
  3. Apply an IP address - Now the interface will showin in ifconfig:
  4.   # ifconfig hme0 192.168.1.4
    
    
  5. Bring the interface up:
  6.   #  ifconfig hme0 up
    
    
  7. Make the changes permanent by updating the /etc/hosts file:
  8.   192.168.1.4	host-name
    
    
  9. Set the default route:
  10.   #  route add default 192.168.1.1
    
    
  11. Make the default route permanent by updating the /etc/defaultrouter:
  12.   192.168.1.1