This is a discussion on recommendation for network config tool that can control more than eth0 within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> does anybody know of a graphical or ncurses based network configuration tool other than netconfig for slackware 9.1. an ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| does anybody know of a graphical or ncurses based network configuration tool other than netconfig for slackware 9.1. an app like the one in red hat would be nice, i was under the impression that it was part of gnome, but i cant find it in slack or mandrake so obv not. any ideas? TIA |
| |||
| Matthew Robinson wrote: >> vi > > does one exist, like netconfig, that can control more than one interface? > ive tried editing the files with vi but i gave up, after a long time of > messing. vi /etc/rc.d/rc.init1.conf you can set up your first interface with netconfig, then simply look how the changes look in /etc/rc.d/rc/init1.conf |
| ||||
| On Wed, 21 Apr 2004 17:34:32 +0100, Matthew Robinson wrote: >> vi > > does one exist, like netconfig, that can control more than one interface? > ive tried editing the files with vi but i gave up, after a long time of > messing. You edit /etc/rc.d/rc.inet1.conf, which requires editing of only 2 lines for each interface. # /etc/rc.d/rc.inet1.conf # # This file contains the configuration settings for network interfaces. # If USE_DHCP[interface] is set to "yes", this overrides any other settings. # If you don't have an interface, leave the settings null (""). # Config information for eth0: IPADDR[0]="192.168.0.3" NETMASK[0]="255.255.255.0" USE_DHCP[0]="" DHCP_HOSTNAME[0]="" # Config information for eth1: IPADDR[1]="" NETMASK[1]="" USE_DHCP[1]="" DHCP_HOSTNAME[1]="" # Config information for eth2: IPADDR[2]="" NETMASK[2]="" USE_DHCP[2]="" DHCP_HOSTNAME[2]="" # Config information for eth3: IPADDR[3]="" NETMASK[3]="" USE_DHCP[3]="" DHCP_HOSTNAME[3]="" # Default gateway IP address: GATEWAY="192.168.0.1" |