08-02-2023 07:15 AM
who can send me the basic configuration of a handle 5525-x INTERNET > ROUTER > ASA > SERVER Thanks for the help
Solved! Go to Solution.
08-02-2023 07:28 AM
@diegoansate a very basic ASA configuration for an OUTSIDE/INSIDE interface, routing and NAT configuration:-
interface gigabitethernet0/0
nameif OUTSIDE
ip address x.x.x.x 255.255.255.x
no shutdown
interface gigabitethernet0/1
nameif INSIDE
ip address x.x.x.x 255.255.255.x
no shutdown
route OUTSIDE 0 0 x.x.x.z
object network INSIDE
subnet x.x.x.x 255.255.255.x
nat (INSIDE,OUTSIDE) dynamic interface
fixup protocol icmp
If you wish further assistance please provide more information on your environment.
08-02-2023 07:28 AM
@diegoansate a very basic ASA configuration for an OUTSIDE/INSIDE interface, routing and NAT configuration:-
interface gigabitethernet0/0
nameif OUTSIDE
ip address x.x.x.x 255.255.255.x
no shutdown
interface gigabitethernet0/1
nameif INSIDE
ip address x.x.x.x 255.255.255.x
no shutdown
route OUTSIDE 0 0 x.x.x.z
object network INSIDE
subnet x.x.x.x 255.255.255.x
nat (INSIDE,OUTSIDE) dynamic interface
fixup protocol icmp
If you wish further assistance please provide more information on your environment.
08-02-2023 07:41 AM
Thanks for replying and sorry for being such a newbie. but i don't understand the following command
route OUTSIDE 0 0 x.x.x.z
08-02-2023 07:43 AM
@diegoansate that's the default route via the OUTSIDE interface, replace x.x.x.z with the IP address of your next hop router IP address.
08-02-2023 07:53 AM
Thanks for answering so quickly and again, sorry for being such a newbie, but I don't understand this other command subnet x.x.x.x 255.255.255.x
08-02-2023 08:01 AM
@diegoansate replace subnet x.x.x.x that reflects your local network, i.e., 192.168.0.0 and replace 255.255.255.x with the subnet mask i.e., 255.255.255.0
08-02-2023 08:13 AM
Thanks for everything
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide