Indice   FAQ  
Iscriviti  Login
Indice RouterOS RouterOS

realizzare un link ridondante

Tutto su questo sistema operativo linux based - Configurazioni, dubbi, problematiche &....

Re: realizzare un link ridondante

Messaggioda Francesco » mer 17 feb 2010, 19:30

Grazie 4isp per la risposta, aspetto domani con ansia il tuo schema, dove posso trovare del materiale per le configurazioni, i router sono sempre mikrotik?
Grazie ancora
Francesco
Mikrotik-User 10° Liv
Mikrotik-User 10° Liv
 
Messaggi: 26
Iscritto il: lun 15 feb 2010, 20:03

Re: realizzare un link ridondante

Messaggioda Francesco » sab 27 feb 2010, 13:48

Scusate, qualcuno mi potrebbe spiegare meglio come configurare due mikrotik con il protocollo ospf o dove trovare del materiale per configurarle grazie mille......
Francesco
Mikrotik-User 10° Liv
Mikrotik-User 10° Liv
 
Messaggi: 26
Iscritto il: lun 15 feb 2010, 20:03

Re: realizzare un link ridondante

Messaggioda 4ISP » sab 27 feb 2010, 13:53

E' stato un periodo un po' incasinato..

il wiki di mikrotik offre una configurazione base molto comprensibile!
4ISP
MikroTIK Guru
MikroTIK Guru
 
Messaggi: 67
Iscritto il: mar 16 feb 2010, 19:24

Re: realizzare un link ridondante

Messaggioda parabolino » sab 27 feb 2010, 14:35

Puoi iniziare dal wiki, ma a cosa ti serve esattamente?
...non è importante sapere tutto, è importante sapere dove cercare!!! E ricorda che CE+CE NON fa CE!
parabolino
MikroTIK Guru
MikroTIK Guru
 
Messaggi: 643
Iscritto il: ven 6 nov 2009, 14:47

Re: realizzare un link ridondante

Messaggioda Francesco » sab 27 feb 2010, 18:56

A me serviva una configurazione in modo tale da avere una rindondanza su due sedi collegate in wi-fi la banda e di circa 20 mb per ora vi sono due rb433(una per sede) e si comportano egregiamente, il problema e se va giu'.. Quindi pensavo di realizzare un doppio link, il problema e farli funzionare in contemporanea quindi cercavo una soluzione per configurarle in maniera tale di avere una rindondanza.. Come mai mi sconsigliate l'mpls e' più' complicato o meno funzionale?
Francesco
Mikrotik-User 10° Liv
Mikrotik-User 10° Liv
 
Messaggi: 26
Iscritto il: lun 15 feb 2010, 20:03

Re: realizzare un link ridondante

Messaggioda parabolino » sab 27 feb 2010, 19:32

Gli esempi del wiki sono perfetti ;)
...non è importante sapere tutto, è importante sapere dove cercare!!! E ricorda che CE+CE NON fa CE!
parabolino
MikroTIK Guru
MikroTIK Guru
 
Messaggi: 643
Iscritto il: ven 6 nov 2009, 14:47

Re: realizzare un link ridondante

Messaggioda Francesco » sab 27 feb 2010, 21:23

scusa parabolino, ti riferisci per caso a questo esempio:
http://wiki.mikrotik.com/wiki/OSPF-examples
OSPF-examples
From MikroTik Wiki
Jump to: navigation, search
NBMA networks
OSPF network type NBMA (Non-Broadcast Multiple Access) uses only unicast communications, so it is the preferred way of OSPF configuration in situations where multicast addressing is not possible or desirable for some reasons. Examples of such situations:

in 802.11 wireless networks multicast packets are not always reliably delivered (read Multicast in wireless networks for details); using multicast here can create OSPF stability problems;
using multicast may be not efficient in bridged or meshed networks (i.e. large layer-2 broadcast domains).
Especially efficient way to configure OSPF is to allow only a few routers on a link to become the designated router. (But be careful - if all routers that are capable of becoming the designated router will be down on some link, OSPF will be down on that link too!) Since a router can become the DR only when priority on it's interface is not zero, this priority can be configured as zero in interface and nbma-neighbor configuration to prevent that from happening.



In this setup only C and D are allowed to become designated routers.

On all routers:

routing ospf network add network=10.1.1.0/24 area=backbone
routing ospf nbma-neighbor add address=10.1.1.1 priority=0
routing ospf nbma-neighbor add address=10.1.1.2 priority=0
routing ospf nbma-neighbor add address=10.1.1.3 priority=1
routing ospf nbma-neighbor add address=10.1.1.4 priority=1
(For simplicity, to keep configuration the same on all routers, nbma-neighbor to self is also added. Normally you wouldn't do that, but it does not cause any harm either.)

Configure interface priorities. On routers A, B:

routing ospf interface add interface=ether1 network-type=nbma priority=0
On routers C, D (they can become the designated router):

routing ospf interface add interface=ether1 network-type=nbma priority=1
Results
On Router A:

[admin@A] > routing ospf neighbor print
0 router-id=10.1.1.5 address=10.1.1.5 interface=ether1 priority=1 dr-address=10.1.1.4
backup-dr-address=10.1.1.3 state="Full" state-changes=6 ls-retransmits=0
ls-requests=0 db-summaries=0 adjacency=4m53s

1 router-id=10.1.1.3 address=10.1.1.3 interface=ether1 priority=1 dr-address=1.1.1.4
backup-dr-address=10.1.1.3 state="Full" state-changes=6 ls-retransmits=0
ls-requests=0 db-summaries=0 adjacency=4m43s

2 address=10.1.1.2 interface=ether1 priority=0 state="Down" state-changes=2

3 address=10.1.1.1 interface=ether1 priority=0 state="Down" state-changes=2
On Router D:

[admin@D] > routing ospf neighbor print
0 address=10.1.1.4 interface=ether1 priority=1 state="Down" state-changes=2

1 router-id=10.1.1.3 address=10.1.1.3 interface=ether1 priority=1 dr-address=10.1.1.4
backup-dr-address=10.1.1.3 state="Full" state-changes=6 ls-retransmits=0
ls-requests=0 db-summaries=0 adjacency=6m8s

2 router-id=10.1.1.2 address=10.1.1.2 interface=ether1 priority=0 dr-address=10.1.1.4
backup-dr-address=10.1.1.3 state="Full" state-changes=5 ls-retransmits=0
ls-requests=0 db-summaries=0 adjacency=6m4s

3 router-id=10.1.1.1 address=10.1.1.1 interface=ether1 priority=0 dr-address=10.1.1.4
backup-dr-address=10.1.1.3 state="Full" state-changes=5 ls-retransmits=0
ls-requests=0 db-summaries=0 adjacency=6m4s

quindi nel mio caso A e la mikrotik installata in una sede la B e l'altra, C e D sono quelli supplementari giusto?
A e C si dovrebbero collegare tra loro atraverso la eth1?
grazie ancora!!!
Francesco
Mikrotik-User 10° Liv
Mikrotik-User 10° Liv
 
Messaggi: 26
Iscritto il: lun 15 feb 2010, 20:03

Re: realizzare un link ridondante

Messaggioda parabolino » sab 27 feb 2010, 22:04

Mi sono perso, se fai uno schema è meglio...
...non è importante sapere tutto, è importante sapere dove cercare!!! E ricorda che CE+CE NON fa CE!
parabolino
MikroTIK Guru
MikroTIK Guru
 
Messaggi: 643
Iscritto il: ven 6 nov 2009, 14:47

Re: realizzare un link ridondante

Messaggioda Francesco » sab 27 feb 2010, 22:12

ho messo il link...http://wiki.mikrotik.com/wiki/OSPF-examples

in questa pagina c'è uno schema penso che per il mio caso vada bene (speriamo!!!!) :D :D :D :D
Francesco
Mikrotik-User 10° Liv
Mikrotik-User 10° Liv
 
Messaggi: 26
Iscritto il: lun 15 feb 2010, 20:03

Re: realizzare un link ridondante

Messaggioda parabolino » sab 27 feb 2010, 23:01

Ti consiglio di fare uno schema con gli attuali dispositivi ed IP, e dopo vediamo come fare la ridondanza.
...non è importante sapere tutto, è importante sapere dove cercare!!! E ricorda che CE+CE NON fa CE!
parabolino
MikroTIK Guru
MikroTIK Guru
 
Messaggi: 643
Iscritto il: ven 6 nov 2009, 14:47


PrecedenteProssimo

Torna a RouterOS

Chi c’è in linea

Visitano il forum: Nessuno e 8 ospiti