1 Without being an administrative user how can you add delet
1. Without being an administrative user, how can you add, delete, or change in the ARP table? Use a mechansim to add at least one new host to the ARP table and include a screenshot.
Solution
ARP (Address Resolution Protocol) is the standard method for finding a host’s hardware address when only its network layer address is known. In other word, in IPv4 and Ethernet network environment, Windows operating system uses ARP to translate IP addresses to Ethernet MAC addresses.
1. Delete an ARP entry:
sunsolaris# arp -d 192.168.0.1
192.168.0.1 (192.168.0.1) deleted
OR
2.Add a static entry :
sunsolaris# arp -s 192.168.0.1 00:18:4d:f8:a4:6e
Syntax:
arp -s HOSTNAME MAC-Address <pub/temp/trail>
where;
pub – publishes the ARP entries to other hosts on the network
temp – Temporary entry
trail – Allows Trailer Encapsulations to be sent to host
For example, to allow ARP responses from the router at 10.1.1.1 with the MAC address 00.02.9a.3b.94.d9, enter the following command:
3. To refresh the Address Resolution Protocol (ARP) cache, use the NetShell (netsh) command.
