Home > other >  Cisco Packet Tracer basic operation
Cisco Packet Tracer basic operation

Time:09-20

The main mode of IOS
Model to describe the prompt
Limited user exec mode the router checks, remote access Router>
Privileged exec mode router's detailed inspection, debug and test, file processing, remote access router #
Global configuration mode of global configuration command Router # (config)
Other configuration mode specific services and the Router interface configuration (config - mode) #

IOS features and command summary:
The user exec mode:
Enable - the user to enter privileged exec mode
The privileged exec mode:
Copy running - config startup - config - used to configure activity is copied to the NVRAM;
Copy startup - config running - config - used to configure the configuration in NVRAM is copied to the memory;
Erase startup - configuration - used to delete the NVRAM jump;
TracerouteIP address - used to track each jump to the address; If # from Windows computer to follow, use tracert
The show interfaces - all the statistics of the interface is used to display equipment;
The show IP interface brief - authentication exchange interface state
Show the clock - used to show the router set up in time,
The IOS version of the show version - displays the current load as well as the hardware and equipment information;
Show the arp, arp table is used to display device;
Show startup - config - is used to display in the configuration in NVRAM;
Show running - config - used to show the current running configuration file content;
The show IP interface - used to show all the interfaces on the router IP statistics;
Configure terminal - used to enter the terminal configuration mode;

The terminal configuration mode:
The hostname hostname, allocating the host name used for equipment;
The enable password, "password - used to set the unencrypted can command;
The enable secret password - used to set up strong encryption can command;
The service password encryption - - in addition to enabling the encrypted password used to encrypt show all password;
Banner motd# message# - used to set the message signs that day;
Line the console 0 - used to enter the console line configuration mode;
Line 4 vty 0 - used to enter the virtual terminal (Telnet) line configuration mode;
Interfaces interface_name - used to enter the interface configuration mode;

Line configuration mode:
Login - used to launch the login password to check;
Password the password - the password used to set the line;

Interface configuration mode:
IP address ip_address netmask - used to set the interface IP address and subnet mask.
The description description - used to set the interface description;
Clock rate value - used to set the clock frequency DCE device;
No shutdown - used to open the interface;
Shutdown - close the interface for management purpose

Configure the router Ethernet interface:
- router Ethernet interface used for local area network (LAN) directly have received gateway router in the network terminal equipment, each Ethernet interface must have an IP address and a subnet mask to route IP packets,
Configure the Ethernet interface:
Router>
Router> The enable # to enter privileged mode
Router # # config t into global mode
The Router (config) # interface FastEthernet 0/0 # enter interface configuration mode
The Router (config - if) # IP address 192.168.10.11 255.255.255.0 # specified interface IP address and subnet mask
The Router (config - if) # # no shutdown starting f0/0 interface
The Router (config - if) # # exit exit interface configuration mode
The Router (config) # # exit out of the global model
Router # # disable exit privileged mode
Router>

Configure the router serial interface
Serial interface used by wan connection for remote sites or ISP router,
Router> The enable
The router # config t
The Router (config) # interface serial 2/0
The Router (config - if) # IP address 192.168.20.100 255.255.255.0
The Router (config - if) 56000 # # clock rate if the connection is the DCE cable, then set the clock frequency; If the connection is DTE cable, skip this step,
The Router (config - if) # no shutdown

The Router (config - if) # description Connects to the main switch in Building A # configuration interface description



Switch interface configuration:
Switch interface is enabled by default,
Switch> The enable
Switch# configure terminal

The Switch (config) # interface FastEthernet 0/1
The Switch (config - if) # description To TAM Switch
The Switch (config - if) # exit
The Switch (config) # hostname Flour_Bluff
Flour_Bluff (config) # exit
Flour_Bluff #


To manage the switch, need to allocate the address, the address of the switch are allocated to the virtual interface called interface virtual local area network (VLAN), in most cases, the interface for VLAN1, this interface is similar to the physical interface of the router, need through the
No shutdown command to start the interfaces,


Flour_Bluff # config t
Flour_Bluff (config) # interface vlan 1
Flour_Bluff (config - if) # IP address 192.168.2.10 255.255.255.0
Flour_Bluff (config - if) # no shutdown

Flour_Bluff (config) # IP default gateway - 192.168.1.1 # switches need a gateway to communicate with outside of the local network equipment
Flour_Bluff (config) # exit
Flour_Bluff #

CodePudding user response:

I've given up using the simulator, the function is too little, cannot be modified OSPF network type, also can't configuration ISIS network,

CodePudding user response:

Layer 3 switches on the lack of many services, such as DHCP, have dedicated server, it is not convenient
  • Related