PDA

View Full Version : ISP refuses to provide support for LINUX



terminalk
03-04-2006, 05:06 PM
Hi

Appreciate it if somebody could translate the below into linux insturctions for me. i have tried a few things on my own but am getting stuck as kppp requires a username and password which I don't have.


"Your phone has been setup and the lines for your internet connection have been patched in.

Please configure your PC as follows,


Plug the network cable into the socket on the wall by the telephone plug.

Plug the other end into your network card in the pc and a link light (if fitted) should come on



Right click on ‘my network places’

Then click on properties

Then right click on ‘local area connection’

Then click on properties

Highlight ‘internet protocol(TCP/IP)

And click on properties

Select use the following IP address



And add the following IP Address



IP address: 192.168.0.41

Subnet mask:255.255.255.0

Gateway: 192.168.0.253

DNS1 196.25.255.34

DNS2 196.25.255.3


Any problems give us a call


Dylan"

Harry Kuhman
03-04-2006, 05:57 PM
See answer #3 (http://www.knoppix.net/wiki/User:Harry_Kuhman).

OErjan
03-04-2006, 06:25 PM
KPPP wont be needed on LAN.
just go trough netcardconfig and ask again if you have trouble.

phillipp
03-07-2006, 04:13 PM
at the command line.......
# /sbin/ifconfig eth0 192.168.0.41 netmask 255.255.255.0 broadcast 192.168.0.255
that fixes the ip address, now route....

# /sbin/route add default gw 192.168.0.253

and now your dns..

edit /etc/resolv.conf should allready have some ip addresses but should look like this...

########
nameserver 196.25.255.34
nameserver 196.25.255.3
########

should be able to
# ping yahoo.com

if not try to ping your gateway

# ping 192.168.0.253
if that works you need to talk to your admin again

by the way i think those name server addresses are wrong.. you cannot use 255 as an address
its for broadcast only...
there are gui's for this but the shell will sometimes tell you more.
hope it helps.
:D