Configure Cut Through Proxy on CISCO ASA - Tech CCNA

Tech CCNA

Today E - Learning , is a best idea to study , therefore this website is best for network and network security concepts.

Breaking

Post Top Ad

Responsive Ads Here

Tuesday 2 January 2018

Configure Cut Through Proxy on CISCO ASA

Configure Cut Through Proxy on CISCO ASA | Tech CCNA

Cut Through Proxy Configuration


Before you start

Objectives : You will be able to configure Cut through proxy on CISCO ASA.
Prerequisites: You have to know the basic of cut through proxy.
Tags : CISCO ASA, ASA Configuration, CUT THROUGH PROXY

Configuration of CTP

If you are new to cut through proxy, you have to know basic of CTP .

http:www.learn-networking.in

Configure ASA interface & CTP:


Configure Inside Interface :

configure terminal
interface GigabitEthernet 0/0
no shutdown
ip address 192.168.1.100
nameif inside
security-level 100

Configure Outside Interface :
configure terminal
interface GigabitEthernet 0/1
no shutdown
ip address 12.1.1.1
nameif outside
security-level 0

Configure DHCP for Inside Network :
dhcpd address 192.168.1.10-192.168.1.50 inside
dhcpd enable inside

Now configure some users in CISCO ASA database:
username vikash password vicky privilege 15

Now match protocol for which you want to enable CTP :
access-list match_list extended permit tcp any any eq 80
access-list match_list extended permit tcp any any eq 443

Now call this access list in AAA command :
aaa authentication match match_list inside LOCAL

This whole configuration you have to configure on cisco ASA and you will find that user must authenticate before access any service which use TCP port 80 & 443.
http://www.techccna.com

Secure Connection using HTTPS


Also, if we want that our client send their information in a secure manner, then we have to also configure a secure server using HTTPS over HTTP. This can be done using following command:

aaa authentication secure-http-client

This will change the authenctication process from HTTP to HTTPS and our communication is secure over this link.

http://www.techccna.com

No comments:

Post a Comment

Pages