0% found this document useful (0 votes)
359 views2 pages

Cisco Packet Tracer Commands

Uploaded by

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

Cisco Packet Tracer Commands

Uploaded by

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

---How to check ARP Table

PC Terminal
C:\>arp -a
Stores IP linked to MAC address

---To show MAC Address Table

Switch Terminal
Switch>
Switch>en
Switch#show mac-address-table
Stores MAC address and Interface(port) e.g fa0/1

Router also maintains ARP Table and Routing Table


A Router for e.g has two interfaces
fa0/0 10.1.1.10/24 Subnet mask 255.255.255.0 Network ID
10.1.1.0/24
fa0/1 20.1.1.10/24 Subnet mask 255.255.255.0 Network ID
20.1.1.0/24

----------Router to Router connected with Serial Cable


2811 Router in CPT supports multiple commands

---First time configuring router use enable command

Router>enable
Router#configure terminal
Router(config)# -------global configuration mode, here configure interface of
router
Router(config)#interface fastEthernet 0/0 -------------- this command will get us
enter/configure the interface
Router(config-if)#no shut ----------------- to uplink the interface, in this
mode we can configure the IP address
Router(config-if)#ip address 10.1.1.10 255.255.255.0
Router(config-if)#do show ip route

To configure next interface fa0/1


Router(config-if)#exit
Router(config)#interface fastEthernet 0/1
Router(config-if)#no shut
Router(config-if)#ip address 20.1.1.10 255.255.255.0
Router(config-if)#do show ip route

Router#show ip arp -------------- to show ARP table

-------------- Firewall Confugiration Basic


Firewall uses Connection Table to forward the traffic futher

For e.g Firewall has two interface Gig1/1 which is connected to inside
network(Trusted)
and second Is Gig1/2 which is connected to internet(untrusted)
Now to configure that

FIrewall# int Gig1/1


FIrewall# nameit inside

You might also like