freebsd-dev/sbin/ifconfig
Jordan K. Hubbard a309172130 From: Wankle Rotary Engine <wpaul@skynet.ctr.columbia.edu>
- The -a flag now works just as it does in SunOS: '-a' is actually
  handled like a wildcard for all interfaces. 'ifconfig -a' displays
  the status of all interfaces, 'ifconfig -a netmask 0xffffff00' sets
  the netmask of all interfaces, and so forth. I don't know if many
  people really need to be able to set the netmasks of all interfaces
  at once, but the SunOS ifconfig seems to allow this, so there you
  have it.

- An 'ether_status' function has been added to display the ethernet
  address of all ethernet interfaces. Again, as in SunOS, you must
  be root in order for this to work. The ethernet address is read
  from /dev/kmem using kvm_open() and kvm_read(), much in the same
  was as it's done with netstat. If you choose to install ifconfig
  set-gid kmem then normal users will be able to see the ethernet
  address as well, though this may not be desireable. This feature
  requires a small change to the ifconfig Makefile: you need to link
  with -lkvm in order to use the kvm_*() functions.

Submitted by:	wpaul
1994-12-30 22:42:41 +00:00
..
ifconfig.8 Added support for setting the per-interface MTU. 1994-08-08 10:45:06 +00:00
ifconfig.c From: Wankle Rotary Engine <wpaul@skynet.ctr.columbia.edu> 1994-12-30 22:42:41 +00:00
Makefile From: Wankle Rotary Engine <wpaul@skynet.ctr.columbia.edu> 1994-12-30 22:42:41 +00:00