Because, it will receive its default gateway information from a router advertisement (RA) message, the switch does not require an IPv6 default gateway.
Switch ports can be manually configured with specific duplex and speed settings. Most 10/100/1000 ports operate in either half- or full-duplex mode when they are set to 10 or 100 Mbps and operate only in full-duplex mode when set to 1000 Mbps (1 Gbps).
The default setting for both duplex and speed for switch ports on many Cisco switches is auto. Autonegotiation is useful when the speed and duplex settings of the device connecting to the port are unknown or may change. When connecting to known devices such as servers, dedicated workstations, or network devices, a best practice is to manually set the speed and duplex settings.
Mismatched settings for the duplex mode and speed of switch ports can cause connectivity issues. Autonegotiation failure creates mismatched settings.
Refer to: Security Configuration — SSH Management
The following table summarizes some of the more useful switch verification commands:
Task | IOS Commands |
---|---|
Display interface status and configuration. | S1# show interfaces [interface-id] |
Display current startup configuration. | S1# show startup-config |
Display current running configuration. | S1# show running-config |
Display information about flash file system. | S1# show flash |
Display system hardware and software status. | S1# show version |
Display history of command entered. | S1# show history |
Display IP information about an interface. | S1# show ip interface [interface-id] or S1# show ipv6 interface [interface-id] |
Display the MAC address table. | S1# show mac-address-table or S1# show mac address-table |
The output from the show interfaces
command is useful for detecting common media issues. Based on the output of the command, possible problems can be fixed as follows:
Some media errors are not severe enough to cause the circuit to fail but do cause network performance issues. The folling sections explain some of these common errors which can be detected using the show interfaces
command.
“Input errors” is the sum of all errors in datagrams that were received on the interface being examined. This includes runts, giants, CRC, no buffer, frame, overrun, and ignored counts. The reported input errors from the show interfaces command include the following:
Error Type | Description |
---|---|
Runts | Packets that are discarded because they are smaller than the minimum packet size for the medium. For instance, any Ethernet packet that is less than 64 bytes is considered a runt. Malfunctioning NICs are the usual cause of excessive runt frames, but they can also be caused by collisions. |
Giants | Packets that are discarded because they exceed the maximum packet size for the medium. For example, any Ethernet packet that is greater than 1,518 bytes is considered a giant. |
CRC | CRC errors are generated when the calculated checksum is not the same as the checksum received. On Ethernet and serial interfaces, CRC errors usually indicate a media or cable error. Common causes include electrical interference, loose or damaged connections, or incorrect cabling. |
“Output errors” is the sum of all errors that prevented the final transmission of datagrams out the interface that is being examined. The reported output errors from the show interfaces command include the following:
Error Type | Description |
---|---|
Collisions | Number of messages retransmitted because of an Ethernet collision. Collisions in half-duplex operations are normal. However, you should never see collisions on an interface configured for full-duplex communication. |
Late Collisions | A collision that occurs after 512 bits of the frame have been transmitted. Excessive cable lengths are the most common cause of late collisions. Another common cause is duplex misconfiguration. |