Having Problems Configuring My Router For Server

MidwestComputer

In Runtime
Messages
340
Hi Guys
I am currently having problems configuring my linksys wrt54g router to my webserver which Linux I am using is Ubuntu and I do got a static ip address from my ISP and I need to know how to setup the static ip address on my Linux server and my windows xp desktop. Thanks Tim
 
first of all your going to configure /etc/network/interfaces
(if your using ubuntu) using ssh or using vim / vi / nano on the server

if this is your first time id suggest using nano

"sudo nano /etc/network/interfaces" <--- this will get you to configure the interfaces.

I would suggest having a static ip of the server on the internal network,
a quick google search of "ubuntu server static ip" should help you of that

when your done use the command "Ctrl + O" to save,
it will ask you which file to save, you sould save over interfaces

When your done with configuring you should restart the server and to make sure its working type in "ifconfig"(<-- in the server/ssh) this should tell you the ip of the server.

NOTE
######
You HAVE to be root (by account or using sudo/ su) if you dont you WONT be able to save over the existing "interfaces"
 
Back
Top Bottom