NGMunia / OSPFv3

OSPFv3 Lab configuration for IPv4 and IPv6
1 stars 0 forks source link

Appliance used #1

Closed tev-oo closed 1 year ago

tev-oo commented 1 year ago

Hello, which appliance did you use on GNS3 to send your scripts to the routers? Because I encountered issues using the Network Automation Appliance.

NGMunia commented 1 year ago

Used Ubuntu Virtual machine with visual code installed. But make sure you install libraries. You can also use Windows vm

tev-oo commented 1 year ago

Ok thanks, I'll run using Ubuntu.

tev-oo commented 1 year ago

Hello, Anthony can help troubleshoot a network issue?

[image: Mailtrack] https://mailtrack.io?utm_source=gmail&utm_medium=signature&utm_campaign=signaturevirality11& Sender notified by Mailtrack https://mailtrack.io?utm_source=gmail&utm_medium=signature&utm_campaign=signaturevirality11& 09/06/23, 08:52:31 AM

On Wed, Aug 16, 2023 at 9:56 PM Anthony Munia @.***> wrote:

You can also use Windows VM

— Reply to this email directly, view it on GitHub https://github.com/NGMunia/OSPFv3/issues/1#issuecomment-1681121196, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGNLW7AYKY22UNBC2NO34FDXVUJU7ANCNFSM6AAAAAA3SJJ3QA . You are receiving this because you authored the thread.Message ID: @.***>

NGMunia commented 1 year ago

WHICH?

tev-oo commented 1 year ago

It is not this lab, but for example I have a router that currently has a public IP assigned to it by the ISP. I want too add another ISP as backup for redundancy. How should I go about doing this?

On Wed, Sep 6, 2023 at 5:05 PM Anthony Munia @.***> wrote:

WHICH?

— Reply to this email directly, view it on GitHub https://github.com/NGMunia/OSPFv3/issues/1#issuecomment-1708441864, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGNLW7DQUCBLK6BNEMMDMC3XZB7K5ANCNFSM6AAAAAA3SJJ3QA . You are receiving this because you modified the open/close state.Message ID: @.***>

NGMunia commented 1 year ago

Use a floating static pointing to the backup ISP (default route with a higher AD)

NGMunia commented 1 year ago

You can also incorporate IPSLA with object tracking for automatic switchover to the backup isp should the internet not be reachable via the main isp

tev-oo commented 1 year ago

IPSLA Ok I will check this out, What about using the BGP protocol

On Thu, Sep 7, 2023 at 7:10 AM Anthony Munia @.***> wrote:

You can also incorporate IPSLA with object tracking for automatic switchover to the backup isp should the internet not be reachable via the main isp

— Reply to this email directly, view it on GitHub https://github.com/NGMunia/OSPFv3/issues/1#issuecomment-1709447006, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGNLW7A6MRTDVFJZJCQVKRTXZFCNFANCNFSM6AAAAAA3SJJ3QA . You are receiving this because you modified the open/close state.Message ID: @.***>

NGMunia commented 1 year ago

If connectivity is used for basic Internet connection e.g browsing no need usingBGP. Use static routes, but if you are offering services in your organization for which need to be accessed via Internet, e.g hosting Web servers for clients then you need BGP.

tev-oo commented 1 year ago

So find a way to set up static routes on the edge router instead of using BGP Ok can we continue on this thread or you can send me your email address

[image: Mailtrack] https://mailtrack.io?utm_source=gmail&utm_medium=signature&utm_campaign=signaturevirality11& Sender notified by Mailtrack https://mailtrack.io?utm_source=gmail&utm_medium=signature&utm_campaign=signaturevirality11& 09/07/23, 10:28:53 AM

On Thu, Sep 7, 2023 at 10:12 AM Anthony Munia @.***> wrote:

If connectivity is used for basic Internet connection e.g browsing no need of BGP. Use static routes, but if you are offering services in your organization for which need to be accessed via Internet, e.g hosting Web servers for clients then you need BGP

— Reply to this email directly, view it on GitHub https://github.com/NGMunia/OSPFv3/issues/1#issuecomment-1709599346, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGNLW7AX47CXL4UR6HYYEWDXZFXVRANCNFSM6AAAAAA3SJJ3QA . You are receiving this because you modified the open/close state.Message ID: @.***>

NGMunia commented 1 year ago

melvinoxl7@gmail.com

NGMunia commented 1 year ago

Sample config: cisco router

Ipsla: This is used to test reachability of a destination address by use of but not limited to icmp probes.

Example on your main isp connection:

Ip sla 1 Icmp-echo (destination-ip) source-ip (your ip add) Ip sla schedule start-time now lifetime forever (This command will send icmp probes always)

Then you can associate this sla configuration with object tracking. Object tracking will aid in switch-over

Commands: Track 1 ip sla 1 Delay up 10 down 10

(The command delay up 10 down 10 means that if the link goes down/up, the router will wait for 10 seconds before switching. This takes care of link flaps to prevent instability or frequent changeovers)

Ip route 0.0.0.0 0.0.0.0 (isp1-gateway) track 1 Ip route 0.0.0.0 0.0.0.0 (isp2-gateway) 10

The second static route (floating static) has a higher AD therefore its not added in the routing table.

The first has a lower AD and is in the routing table but this is dependent on the Object track configured