Let's troubleshoot... We also do trainings .. Checkout our training page https://asame2.blogspot.com/p/we-also-deliver-trainings.html

Featured Post

How to generate a CSR on Cisco ASA using CLI? CSR- (Certificate signing request)

First thing we need is an RSA key pair:   crypto key generate rsa label SSL-Key modulus 1024 noconfirm Create a trust-point crypto ca...

Recent Comments

Recent Post

Let's troubleshoot... We also do trainings .. Checkout our training page https://asame2.blogspot.com/p/we-also-deliver-trainings.html

Wednesday, 30 March 2016

Anyconnect 4.x to use SHA 256


(adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-5845227107240424", enable_page_level_ads: true }); I want my any-connect to use SHA2 or SHA256 when it negotiates. How do I go about that? Answer: use the below ciphers:   ssl cipher tlsv1.2 custom "AES256-SHA256:AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DES-CBC3-SHA:DES-CBC-SHA:RC4-SHA" I...

Tuesday, 29 March 2016

How to boot ASA from/using TFTP


(adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-5845227107240424", enable_page_level_ads: true }); So you have issue with your flash memory and ASA is unable to pick the image from flash. It goes into a booting loop but never boots up. You can now boot using a TFTP server. IP address that you want to assign to ASA: ADDRESS=10.197.222.100 IP...

Monday, 21 March 2016

Port forwarding on ASA


(adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-5845227107240424", enable_page_level_ads: true });  I need to access a resource from outside world that is in my private network at port 5900 using ASA's public IP. object service port_vncservice tcp source eq 5900!nat (inside,outside) source static obj_192.168.1.11 interface destination...