Sunday, July 29, 2018

Stop Having Difficult Conversations, By Ann Tardy


Jane's boss: "Jane, you keep avoiding that difficult conversation you need to have with your employee."
Jane:
"Fine, I'll do it. I'll be mean."
Whoa-Jane just framed the difficult conversation in a very disempowering way. Why do we typically avoid difficult/crucial/confronting conversations? Well, our focus is on the other person's judgment or reaction! Will they think I'm rude, unkind, unfair, or mean? Will they get defensive or upset? What Jane and the rest of us difficult-conversation-avoiders need is a new frame on a ubiquitous challenge.
Conversations are difficult when we make it about the other person's judgment or reaction. But there valuable when we make it about their success.When we shift the focus from the other person’s reaction or judgment to our intention to support their success, then these conversations become the gateway to our contributions.
Being committed to their success allows us to welcome (not avoid) the conversation that will contribute to that success. As an example, you can say: "Let's have a commitment conversation. As your boss, I am committed to your success. However, based on the goals you've shared with me, the behavior I'm observing is not serving your success. Let's stop having difficult conversations and start having commitment conversations."
One of the main reasons we need to have a commitment conversation is that people don't know their blind spots. While operating a vehicle, a blind spot is hazard. Caused by weather conditions or car design, it's the area while driving that we just cannot see without intentionally adjusting our view. Similarly, blind spots while leading are also hazardous. Caused by our oblivion or unawareness, they are the aspects of our personality that we do not or cannot see. For example, we may regularly denigrate people on our team, without even realizing it.
In the book, To Kill a Mockingbird, Atticus tells Scout that Mr. Cunningham is basically a good person with blind spots, because he couldn't see his own racism toward Tom Robinson. So how can we discover our human blind spots?
· Adjust the mirror and shift the view
· Engage a mentor
· Use a 360 assessment
· Re-examine recent performance reviews
· Inspect our results
· Explore our interactions
· Have commitment conversations
Other people typically see those facets of our personality that we unconsciously don't see or intentionally don't want to see-our idiosyncrasies, habits, behaviors, and actions. Our ignorance is not bliss; it's dangerous. Just because we can't see our blind spots does not mean they don't exist.Whether we are driving or leading, remaining unaware of our blind spots puts us at risk of damaging cars and relationships, respectively. So what can we do about our blind spots? Drive and lead with more intentionality, cognizance, and compassion.
We don't know what we don't know is simply lazy; we don't know what we don't examine. By engaging in commitment conversations we can ensure that our people examine their blind spots in order to become bigger, better, bolder versions of themselves. And that's our job as their leader. It's not difficult. It's our commitment.

Saturday, July 7, 2018

Cisco ASA5505

ASA5505(config)# write memory
ciscoasa(config)# write erase
Erase configuration in flash memory? [confirm] [OK] ciscoasa(config)# reload
System config has been modified. Save? [Y]es/[N]o: N
Proceed with reload? [confirm] ciscoasa(config)#
***
*** — START GRACEFUL SHUTDOWN —
Shutting down isakmp
Shutting down webvpn
Shutting down File system
***
*** — SHUTDOWN NOW —
Process shutdown finished
Rebooting
Ciscoasa> enable
Password: cisco
ciscoasa# configure terminal
ciscoasa(config)#

Would you like to enable anonymous error reporting to help improve
the product? [Y]es, [N]o, [A]sk later: N

In the future, if you would like to enable this feature,
issue the command “call-home reporting anonymous”.
Please remember to save your configuration.

At this point we need to note that when starting off with the factory default configuration, as soon as we enter the ‘configure terminal’ command, the system will ask if we would like to enable Cisco’s call-home reporting feature. We declined the offer and continued with our setup:

ciscoasa(config)# hostname ASA5505
ASA5505(config)# enable password firewall.cx
ASA5505(config)# username admin password s1jw$528ds2 privilege 15
ASA5505(config)# interface vlan 1
ASA5505(config)# description Private-Interface
ASA5505(config-if)# ip address 10.71.0.1 255.255.255.0
ASA5505(config-if)# no shutdown
ASA5505(config)# interface vlan 2
ASA5505(config)# description Public-Interface
ASA5505(config-if)# ip address 192.168.3.50 255.255.255.0
ASA5505(config-if)# no shutdown
ASA5505(config)# interface ethernet 0/0
ASA5505(config-if)# switchport access vlan 2
ASA5505(config-if)# no shutdown
ASA5505(config)# interface vlan 2
ASA5505(config)# description Public-Interface
ASA5505(config-if)# ip address dhcp setroute
ASA5505(config-if)# no shutdown
ASA5505(config)# interface ethernet 0/1
ASA5505(config-if)# no shutdown
ASA5505(config-if)# interface ethernet 0/2
ASA5505(config-if)# no shutdown
ASA5505(config)# interface vlan 1
ASA5505(config-if)# nameif inside
INFO: Security level for “inside” set to 100 by default.
ASA5505(config)# interface vlan 2
ASA5505(config-if)# nameif outside
INFO: Security level for “outside” set to 0 by default
ASA5505(config)# route outside 0.0.0.0 0.0.0.0 192.168.3.1
ASA5505(config)# ping 192.168.3.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms
ASA5505(config)# route outside 10.75.0.0 0.0.0.0 10.71.0.100
ASA5505(config)# route outside 10.76.0.0 0.0.0.0 10.71.0.100
About Us