Click to See Complete Forum and Search --> : NETSWITCHER FOR LINUX


APHRODITE007
02-06-2001, 07:14 AM
does anybody know where i can download or get hold of netswitcher for linux or a similar app??
:confused: :confused:

FoBoT
02-06-2001, 11:41 AM
Originally posted by APHRODITE007:
get hold of netswitcher for linux or a similar app?

what does it do ?

APHRODITE007
02-07-2001, 03:23 AM
netswitcher is an app that allows you to store mutiple ip settings thus
allowing you to ravel around to diff networks select profile and connect,
thus you can connect without having to remember or change diff settings,
however it only works in windows
i want 1 that will work in Linux

if you know of something similar please let me know

Muzzafarath
02-07-2001, 08:21 AM
Write several/one scripts that configs the network settings. For example:

home_network.sh:


#/bin/bash

ifconfig eth0 ip 192.168.0.1
ifconfig eth0...


work_network.sh:


#/bin/bash

ifconfig eth0 ip 192.168.6.44
ifconfig eth0...



You can then put them in /usr/local/bin and when you wish to switch network settings, run `home_network.sh` or `work_network.sh` and so on...