Author: Carl Parrish Date: Subject: Knoppix and internet access
JD Austin wrote:
>> Is there a way to config network settings on knoppix if you're not
>>runnina dhcp?
>>
>>---------------------------------------------------
>>PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us >>To subscribe, unsubscribe, or to change you mail settings:
>>http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss >>
>>
>>
>
>You can do it from the commandline as root (use sudo):
>
>ifconfig <interface> <gateway_address> <ip_address>
>route add default gw <gateway_address> netmask <netmask>
>ie:
>ifconfig eth0 192.168.1.254 192.168.1.1
>route add default gw 192.168.1.254 netmask 0.0.0.0
>
>JD
>
> Thanks JD