Lake Argyle – Sat and SSN

A quick install of Satellite Communications, using the Telsta iterra network and SSN (Silver Springs Networks) Access Points in remote WA. One of a few AP’s that have to be Sat connected due to there being no 3/4G. Nevertheless it worked as expected. These SSN AP’s operate on both 900 MHz and 2.4 GHz which increases the capacity and reliability of the meshed network, ultimately providing access and supporting Smart Meters, out bush.

Working in 40 degree heat with shade provided, courtesy of Horizon Power 👌🏼

SSN AP

Cisco ACI Fabric Forwarding summary

Here’s a great summary of the ACI packet flow in conjunction with Spine and Leaf, a good watch if you have played with any of this technology, in any way. Thank you Lilian Quan. Very helpful 🙂

….and another good explanation, depending on the sex of your packet.

 

Reset Cisco IP Phone(7962) to the Factory Default

Complete these steps:

  1. Unplug the power cable from the phone, and then plug in the cable again.

The phone begins its power up cycle.

  1. Immediately press and hold# and while the Headset, Mute, and Speaker buttons begin to flash in sequence, release #.

The line buttons flash in sequence in order to indicate that the phone waits for you to enter the key sequence for the reset. (these are buttons on the right of the display)

  1. Press 123456789*0# within 60 seconds after the Headset, Mute, and Speaker buttons begin to flash.

If you do not complete this key sequence or do not press any keys, after 60 seconds the Headset, Mute, and Speaker buttons no longer flash, and the phone continues with its normal start-up process. The phone does not reset.

If you enter an invalid key sequence, the buttons no longer flash, and the phone continues with its normal startup process. The phone does not reset.

If you enter this key sequence correctly, the phone displays this prompt:

Upgrading……….

Troubleshooting Cisco ASA 5500 Firewalls

How to view interfaces and descriptions?
#show nameif

How to remove the entire access list?
# clear config access-list <ACL-Name>
–There are many things you can delete with the clear config command, be careful with how you use this command.

How to view the interface name, IP address and state of the interface, similar to show ip int brief on a router?
# show interface ip brief
— The IP and Interface is backwards compared to a Cisco Router

How to find out what unit is the active and standby units in a HA pair?
# show failover
– This will tell you what unit is active and standby, it will also tell you if the standby unit is ready or not to become active. It will also tell you if the interfaces are monitor and if they are down.

How to view interface statistics and port status
# show interface gigabit <slot/port>
– This is very similar to “show interface” on a router or a switch

How to view line numbers and the hit counters on an access list?
# show access-list -> will show all access lists
# show access-list <ACL-NAME>

How to view information on Cooling fans, Power supplies, Temperature and Voltage
# show environment
***This is going to be different on different models

How to find the IP address a known IP address is NAT’d to?
# show xlate -> Shows all NAT translations
# show xlate | include <known IP address> -> Shows the NAT translation for a specific IP address
– This is very useful on Version 8.3 and above because the public and private IP’s are not together in the configuration. Part of it is up in the object groups, the rest is down in the NAT section.

How to view each connection going through the ASA?
# show conn

How to view the files on the flash card?
# show flash

How to view the IOS file the system will use on the next bootup?
# show bootvar

How to view CPU utilization and process information? ***command may vary by model and software release
# show cpu -> Shows 5 Second, 1 minute, and 5 minute average
# show processes [cpu-hog|cpu-usage|internals|memory] ->

Packet tracer is a great tool to see if a data flow is allowed through the firewall. This only works on Routed firewalls, it does not work in transparent mode. Cisco should get a pat on the back for this one!!

# packet-tracer input <incoming-interface> <Protocol-icmp|rawip|tcp|udp> <source-IP> <Source port> <Destination IP> <Destination port>

Example: #packet-tracer input inside tcp 192.168.1.1 1024 172.16.1.1 80
**Source port does not matter, I like to use 1024
Follow the output down the screen and it will tell you where it fails, or it will tell you it is allowed. Usually when it is dropped by ACL, it does not tell you what ACL is blocking it.

The ASA has a built in packet capture feature built into it. You can easily get a packet capture of any traffic flow going through the ASA.

1. Create your ACL with the specifics of what you are looking for

Access-list 100 permit tcp host <source ip> host <destination ip> eq port
Access-list 100 permit tcp host <destination ip> host <source ip> eq port

2. Create your capture’s and apply them to the inbound interface on the ASA

capture <capture name> access-list <acl name/number> buffer 700000 interface <interface traffic is entering> packet-length <packet length: ex:1518)

3. Have user perform a test
4. Copy the capture to your PC

Use a web browser and go to https://<ASA’s IP>/capture/<capture name>/pcap

It will prompt you to log in, then to download the file.

You can look at the output on the ASA with the “show capture <capture-name>” command.

*** I recommend creating your ACL for traffic in both directions. If you don’t, you will only see traffic in one direction.

%d bloggers like this: