0% found this document useful (0 votes)
25 views4 pages

4 Verify IP Parameters For Client OS PDF

The document provides step-by-step instructions for assigning a static IP configuration on both Windows and Linux operating systems. For Windows, it details navigating through Control Panel and adjusting network adapter settings, while for Linux, it includes commands for setting IP address, gateway, and DNS in Kali Linux. Additionally, it outlines commands to verify IP configuration and check routing tables for both operating systems.

Uploaded by

Khurram
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views4 pages

4 Verify IP Parameters For Client OS PDF

The document provides step-by-step instructions for assigning a static IP configuration on both Windows and Linux operating systems. For Windows, it details navigating through Control Panel and adjusting network adapter settings, while for Linux, it includes commands for setting IP address, gateway, and DNS in Kali Linux. Additionally, it outlines commands to verify IP configuration and check routing tables for both operating systems.

Uploaded by

Khurram
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

IP Parameters for Client Windows OS:

Use these steps to assign a static IP configuration:


1. Open Control Panel.
2. Click on Network and Internet.
3. Click on Network and Sharing Center.
4. On the left pane, click the Change adapter settings link.

5. Right-click the network adapter and select the Properties option.


6. Select the Internet Protocol Version 4 (TCP/IPv4) option.
7. Click the Properties button.
8. Select the Use the following IP address option.
9. Set the IP address (for example, 1.1.1.10).
10. Set the Subnet mask (for example, 255.0.0.0).
11. Set the Default gateway(for example, 1.1.1.1).
12. Under “Use the following DNS server addresses” set Preferred DNS(for example, 8.8.8.8).
13. (Optional) Enter set the Alternative DNS server, Click the OK button.
14. Click the OK button.

15. Click the Close button again.

To verify open CMD type command ipconfig or ipconfig /all


Open CMD type route print or netstat -nr to check routing table for windows PC.
IP Parameters for Client Linux OS:
Setup IP Address in Kali Linux:
root@kali:~# ifconfig eth0 192.168.78.134 netmask 255.255.255.0 up

Setup Gateway in Kali Linux:


root@kali:~# route add default gw 192.168.78.100 eth0

Setup DNS in Kali Linux:


root@kali:~# echo "nameserver 8.8.8.8" > /etc/resolv.conf

Check your IP configuration in Kali Linux:


root@kali:~# ifconfig

Check your routing table in Kali Linux:


root@kali:~# route

root@kali:~# netstat -nr

Check your DNS setting in Kali Linux:


root@kali:~# cat /etc/resolv.conf

You might also like