home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / pcmcia / network.opts < prev    next >
Text File  |  1999-10-31  |  2KB  |  52 lines

  1. # Network adapter configuration
  2. #
  3. # The address format is "scheme,socket,instance,hwaddr".
  4. #
  5. # Note: the "network address" here is NOT the same as the IP address.
  6. # See the Networking HOWTO.  In short, the network address is the IP
  7. # address masked by the netmask.
  8. #
  9. case "$ADDRESS" in
  10. *,*,*,*)
  11.     # Transceiver selection, for some cards -- see 'man ifport'
  12.     IF_PORT=""
  13.     # Use BOOTP (via /sbin/bootpc)? [y/n]
  14.     BOOTP="n"
  15.     # Use DHCP (via /sbin/dhcpcd)? [y/n]
  16.     DHCP="n"
  17.     # Use DHCLIENT? [y/n]
  18.     DHCLIENT="n"
  19.     # Use /sbin/pump for BOOTP/DHCP? [y/n]
  20.     PUMP="n"
  21.     # Host's IP address, netmask, network address, broadcast address
  22.     IPADDR=""
  23.     NETMASK="255.255.255.0"
  24.     NETWORK="1.2.0.0"
  25.     BROADCAST="1.2.255.255"
  26.     # Gateway address for static routing
  27.     GATEWAY="1.2.0.1"
  28.     # Things to add to /etc/resolv.conf for this interface
  29.     DOMAIN=""
  30.     SEARCH=""
  31.     # The nameserver IP addresses specified here complement the
  32.     # nameservers already defined in /etc/resolv.conf.  These nameservers
  33.     # will be added to /etc/resolv.conf automatically when the PCMCIA
  34.     # network connection is established and removed from this file when
  35.     # the connection is broken.
  36.     DNS_1=""
  37.     DNS_2=""
  38.     DNS_3=""
  39.     # NFS mounts, should be listed in /etc/fstab
  40.     MOUNTS=""
  41.     # For IPX interfaces, the frame type and network number
  42.     IPX_FRAME=""
  43.     IPX_NETNUM=""
  44.     # Run ipmasq? [y/n]  (see the Debian ipmasq package)
  45.     IPMASQ="n"
  46.     # Extra stuff to do after setting up the interface
  47.     start_fn () { return; }
  48.     # Extra stuff to do before shutting down the interface
  49.     stop_fn () { return; }
  50.     ;;
  51. esac
  52.