Posts

Showing posts with the label IP address
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

How Change Ubuntu IP ?

If the Ubuntu Server installer has set your server to use DHCP, you will want to change it to a static IP address so that people can actually use it. Changing this setting without a GUI will require some text editing, but that’s classic linux, right? Let’s open up the /etc/network/interfaces file. I’m going to use vi, but you can choose a different editor sudo vi /etc/network/interfaces For the primary interface, which is usually eth0, you will see these lines: auto eth0 iface eth0 inet dhcp As you can see, it’s using DHCP right now. We are going to change dhcp to static, and then there are a number of options that should be added below it. Obviously you’d customize this to your network. auto eth0 iface eth0 inet static address 192.168.1.100 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1 dns-nameservers 192.168.1.1 Now we’ll need to add in the DNS settings by editing the resolv.conf file: sudo vi /etc/resolv.conf On the ...

How to make a dynamic IP address static?

This step is required to setup FTP Scan from either Xerox or Canon. Please follow the step by step instructions below. 1. Click "Start" 2. Select "Control Panel" 3. Select "Network and Sharing Center" 4. Click "Local Area Connection" if the computer is connected directly with ethernet cable or Click "Wifi" if you are connect wirelessly. 5. Click "Properties" 6. Select "Details" and please make a note of (IP Address, Subnet Mask, Default Gateway, and DNS Server) 7. After you have made the notes click "Close" 8. Click "Properties" 9. Highlight "Internet Protocol Version 4 (TCP/IPv4) 10. Select "Use the following IP Address" and fill in the following fields(IP address, Subnet mask, Default Gateway, and Preferred DNS server) these are the information that you made a note of. 11. Click "Ok" and "Close" and "Close" Now the IP address ...