Cisco Packet Tracer 8.2 new features

Packet Tracer 8.2 main new features are :

  • New command "show ip ospf interface brief" and "show ipv6 ospf interface brief".

  • Edge scrolling while dragging has now returned.

  • Proxy settings can now be set from the login window.

  • Selecting the CLI tab will now auto focus onto the command line itself when not using any assistive technology tools.

  • For easier translations of the interface, the lupdate and lconvert tools are now part of the package.

  • Thanks to community reports, many message boxes have been reworded for better clarity.

  • Thanks to community reports, certain incompatible DLLs that caused crashes are now blocked from loading inside Packet Tracer.

 

New OSPF command

Cisco Packet Tracer 8.2 introduces the "show ip ospf interface brief" command which can be used to display which interfaces are enabled into the OSPF process. OSPF configuration is a topic of the 200-301 CCNA certification exam.

The following sample shows the command result on a Cisco ISR 1841 router with two OSPF neighbors. The FA0/1 interface is currently doing the DR-BDR election process on as this interface isconnected to a multiaccess broadcast network segment.

Router#show ip ospf interface brief 
Interface     PID   Area                     IP Address/Mask          Cost  State  Nbrs F/C
Se0/0/0         1   0.0.0.0                       10.0.0.1/255.0.0.0   64   POINT  0/0
Fa0/1           1   0.0.0.0                       11.0.0.1/255.0.0.0   1     WAIT  0/0

After OSPF adjacency convergence, the router has been elected as Backup Designated Router on the ethernet segment.

Router#
00:00:45: %OSPF-5-ADJCHG: Process 1, Nbr 3.3.3.3 on FastEthernet0/1 from LOADING to FULL, Loading Done

Router#show ip ospf interface brief 
Interface     PID   Area                     IP Address/Mask          Cost  State  Nbrs F/C
Se0/0/0         1   0.0.0.0                       10.0.0.1/255.0.0.0   64   POINT  0/0
Fa0/1           1   0.0.0.0                       11.0.0.1/255.0.0.0   1      BDR  0/0

Installing Cisco Packet Tracer 8.2.2 on Ubuntu 22.04

A package dependency issue with libgl1-mesa-glx might be experienced when installing Cisco Packet Tracer 8.2.2 on Ubuntu 22.04.

# apt-get install CiscoPacketTracer822_amd64_signed.deb
(Reading database ... 218755 files and directories currently installed.)
Preparing to unpack CiscoPacketTracer.deb ...
Unpacking packettracer (8.2.2) over (8.2.2) ...
gtk-update-icon-cache: No theme index file.
dpkg: dependency problems prevent configuration of packettracer:
 packettracer depends on libgl1-mesa-glx; however:
  Package libgl1-mesa-glx is not installed.

dpkg: error processing package packettracer (--install):
 dependency problems - leaving unconfigured
Processing triggers for shared-mime-info (2.4-4) ...
Errors were encountered while processing:
 packettracer

The libgl1-mesa-glx package for Ubuntu 22.04 can be manually installed using the following procedure before installing Cisco Packet Tracer 8.2.2 :

  1. sudo apt install libgl1 libglx-mesa0
  2. wget http://mirrors.kernel.org/ubuntu/pool/universe/m/mesa/libgl1-mesa-glx_22.0.1-1ubuntu2_amd64.deb
  3. sudo apt install ./libgl1-mesa-glx_22.0.1-1ubuntu2_amd64.deb

Then, resume Cisco Packet Tracer 8.2.2 install with apt-get install CiscoPacketTracer822_amd64_signed.deb