How to Make Ip Address

download How to Make Ip Address

of 3

Transcript of How to Make Ip Address

  • 7/29/2019 How to Make Ip Address

    1/3

    How to make IP address

    windows xp

    1. we are connected to the network

    2. click on the start menu > control panel

    3. click 2 times in network connection

    4. click right on the local area connection - propertis

    5. after then click on internet protocol (TCP/IP) click propertis no IP

    6. enter address and DNS

    for example:

    IP naddress : 10.10.1.45

    subnet mask : 255.255.255.0

    defolt gateway : 10.10.1.1

    preferred DNS server : 192.168.40.1

    7. klicfk ok > ok

    8. finished

    windows 7

    1. First open your laptop or pc, if it is entered into the desktop, then click

    Start and then click Control Panel.

    2. if it is, we will go into the Control Panel, there will be plenty of options

    for setting up anything in windows 7 us. because we want to download manually

    setting the IP address then click Network and Internet.

    3. then we will go into the menu Network and Internet, just click the Network

    and Sharing Center.

    4. After that go to the menu again, and click Change adapter settings.

    5. then we will be faced with all the adapters that we have, because we will be

    setting up the LAN IP then we select the Local Area Connection, right click on

    it and select Properties.

    Wireless is also the same for cuman in this case to LAN and Wireless are

    different adapters so if you want to set up Wireless equally right click on the

    Wireless Network Connection and select Properties.

    6. Then we will go to the next menu, here for setting IP Address manually click

  • 7/29/2019 How to Make Ip Address

    2/3

    2 times the Internet Protocol Version 4 (TCP / IP).

    7. after that we will go into the menu Internet Protocol Version 4 (TCP / IP)

    here there are many options therefore select Use the following IP Address

    Fill in the IP Address, Subnet mask, and Gateway to the ip that you want. if you

    want to include DNS simply type in the field Use the following DNS server

    addresses. then click ok

    Setting IP address in linux

    linux :

    Setting the IP Address

    IP Address Linux On Linux there are several kinds of IP Address. There are IP

    Permanent, Temporary IP, and IP Alias. Permanent IP is the IP that will be

    stored even if we restart the OS. Unlike the Temporary IP would change if we

    restart the OS. While IP Alias / Aliasing is

    singgel mapping MAC

    addresses

    to multiple IP addresses. So we can install multiple IP Address by using one

    ethetnet only. Ok .. straight course towards the configuration steps.

    1. Permanent IP

    The first step we did was open the interfaces file using a text editor. Here I

    use nano as the text editor. Enter the command:

    # Nano / etc / network / interfaces

    The next step add the following script on the bottom line:

    # The eth0 network interface

    auto eth0

    iface eth0 inet static

    address 192.168.30.1

    netmask 255.255.255.0

    gateway 192.168.30.1

    If you have press "Ctrl + x" and "y" and the last Enter. It is a command to save

    the text editor nano. The last step is to restart the network. Enter the

    command:

    # / Etc / init.d / networking restart

    Permanent IP we've become. To view the IP Address field, enter the command:

    # Ifconfig

    2. Temporary IP

    Steps to create a Temporary IP is very easy and fast. We only stayed enter the

  • 7/29/2019 How to Make Ip Address

    3/3

    command:

    # Ifconfig eth0 192.168.5.1 netmask 255.255.255.0

    Then you live to see the results with the ifconfig command earlier.

    3. IP Alias

    The first step to create the same IP Alias

    IP Permanent. Ie open

    the

    interfaces file. Then add the following script on the bottom line:

    # The eth0 network interface

    auto eth0

    iface eth0 inet static

    address 192.168.31.1

    netmask 255.255.255.0

    gateway 192.168.31.1

    # The eth0: 0 network interface

    auto eth0: 0

    iface eth0: 0 inet static

    address 192.168.10.1

    netmask 255.255.255.0

    Then save the file and outgoing. After that, do not forget to restart the

    network. re-enter the command:

    # / Etc / init.d / networking restart

    IP Alias is successful we make. If still in

    doubt, please check

    your IP by

    using the ifconfig command earlier.