1999-11-17 23:50:41 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
|
|
|
* (c) 1999 Ondrej Filip <feela@network.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ospf.h"
|
|
|
|
|
2000-04-19 01:54:06 +08:00
|
|
|
char *ospf_is[]={ "down", "loop", "waiting", "point-to-point", "drother",
|
|
|
|
"backup", "dr" };
|
|
|
|
|
2000-04-19 03:22:49 +08:00
|
|
|
char *ospf_ism[]={ "interface up", "wait timer fired", "backup seen",
|
|
|
|
"neighbor change", "loop indicated", "unloop indicated", "interface down"};
|
|
|
|
|
2000-06-02 01:52:21 +08:00
|
|
|
char *ospf_it[]={ "broadcast", "nbma", "point-to-point", "virtual link" };
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
void
|
|
|
|
iface_chstate(struct ospf_iface *ifa, u8 state)
|
|
|
|
{
|
2000-06-05 13:06:22 +08:00
|
|
|
struct proto_ospf *po=ifa->proto;
|
|
|
|
struct proto *p=&po->proto;
|
|
|
|
u8 oldstate;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-04-19 02:01:26 +08:00
|
|
|
if(ifa->state!=state)
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2000-04-19 02:01:26 +08:00
|
|
|
debug("%s: Changing state of iface: %s from \"%s\" into \"%s\".\n",
|
|
|
|
p->name, ifa->iface->name, ospf_is[ifa->state], ospf_is[state]);
|
2000-06-05 13:06:22 +08:00
|
|
|
oldstate=ifa->state;
|
2000-04-19 02:01:26 +08:00
|
|
|
ifa->state=state;
|
|
|
|
if(ifa->iface->flags & IF_MULTICAST)
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2000-04-19 02:01:26 +08:00
|
|
|
if((state==OSPF_IS_BACKUP)||(state==OSPF_IS_DR))
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2000-06-06 07:44:26 +08:00
|
|
|
if((ifa->dr_sk==NULL)&&(ifa->type!=OSPF_IT_NBMA))
|
2000-04-19 02:01:26 +08:00
|
|
|
{
|
2000-04-19 03:31:42 +08:00
|
|
|
DBG("%s: Adding new multicast socket for (B)DR\n", p->name);
|
2000-04-19 02:01:26 +08:00
|
|
|
ifa->dr_sk=sk_new(p->pool);
|
2000-04-19 03:31:42 +08:00
|
|
|
ifa->dr_sk->type=SK_IP_MC;
|
|
|
|
ifa->dr_sk->dport=OSPF_PROTO;
|
|
|
|
ifa->dr_sk->saddr=AllDRouters;
|
|
|
|
ifa->dr_sk->daddr=AllDRouters;
|
|
|
|
ifa->dr_sk->tos=IP_PREC_INTERNET_CONTROL;
|
|
|
|
ifa->dr_sk->ttl=1;
|
|
|
|
ifa->dr_sk->rx_hook=ospf_rx_hook;
|
|
|
|
ifa->dr_sk->tx_hook=ospf_tx_hook;
|
|
|
|
ifa->dr_sk->err_hook=ospf_err_hook;
|
|
|
|
ifa->dr_sk->iface=ifa->iface;
|
|
|
|
ifa->dr_sk->rbsize=ifa->iface->mtu;
|
|
|
|
ifa->dr_sk->tbsize=ifa->iface->mtu;
|
|
|
|
ifa->dr_sk->data=(void *)ifa;
|
|
|
|
if(sk_open(ifa->dr_sk)!=0)
|
|
|
|
{
|
|
|
|
DBG("%s: SK_OPEN: new? mc open failed.\n", p->name);
|
|
|
|
}
|
2000-04-19 02:01:26 +08:00
|
|
|
}
|
2000-04-18 05:10:40 +08:00
|
|
|
}
|
2000-04-19 02:01:26 +08:00
|
|
|
else
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2000-06-01 02:45:16 +08:00
|
|
|
if(ifa->dr_sk!=NULL)
|
|
|
|
{
|
|
|
|
rfree(ifa->dr_sk);
|
|
|
|
ifa->dr_sk=NULL;
|
|
|
|
}
|
2000-04-18 05:10:40 +08:00
|
|
|
}
|
2000-06-06 04:57:53 +08:00
|
|
|
if((oldstate==OSPF_IS_DR)&&(ifa->nlsa!=NULL))
|
2000-06-05 13:06:22 +08:00
|
|
|
{
|
2000-06-06 04:57:53 +08:00
|
|
|
ifa->nlsa->lsa.age=LSA_MAXAGE;
|
2000-06-06 00:32:29 +08:00
|
|
|
if(state>=OSPF_IS_WAITING)
|
|
|
|
{
|
|
|
|
net_flush_lsa(ifa->nlsa,po,ifa->oa);
|
|
|
|
}
|
2000-06-05 13:06:22 +08:00
|
|
|
if(can_flush_lsa(ifa->oa)) flush_lsa(ifa->nlsa,ifa->oa);
|
|
|
|
ifa->nlsa=NULL;
|
|
|
|
}
|
2000-04-18 05:10:40 +08:00
|
|
|
}
|
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
downint(struct ospf_iface *ifa)
|
|
|
|
{
|
2000-06-01 02:31:53 +08:00
|
|
|
struct ospf_neighbor *n,*nx;
|
2000-05-17 07:59:38 +08:00
|
|
|
struct proto *p=&ifa->proto->proto;
|
|
|
|
struct proto_ospf *po=ifa->proto;
|
|
|
|
|
2000-06-01 02:31:53 +08:00
|
|
|
WALK_LIST_DELSAFE(n,nx,ifa->neigh_list)
|
2000-05-17 07:59:38 +08:00
|
|
|
{
|
2000-05-31 02:21:51 +08:00
|
|
|
debug("%s: Removing neighbor %I\n", p->name, n->ip);
|
2000-05-17 07:59:38 +08:00
|
|
|
ospf_neigh_remove(n);
|
|
|
|
}
|
|
|
|
rem_node(NODE ifa);
|
|
|
|
if(ifa->hello_sk!=NULL)
|
|
|
|
{
|
|
|
|
rfree(ifa->hello_sk);
|
|
|
|
}
|
|
|
|
if(ifa->dr_sk!=NULL)
|
|
|
|
{
|
|
|
|
rfree(ifa->dr_sk);
|
|
|
|
}
|
|
|
|
if(ifa->ip_sk!=NULL)
|
|
|
|
{
|
|
|
|
rfree(ifa->ip_sk);
|
|
|
|
}
|
|
|
|
if(ifa->wait_timer!=NULL)
|
|
|
|
{
|
|
|
|
tm_stop(ifa->wait_timer);
|
|
|
|
rfree(ifa->wait_timer);
|
|
|
|
}
|
2000-06-01 02:45:16 +08:00
|
|
|
if(ifa->hello_timer!=NULL)
|
|
|
|
{
|
|
|
|
tm_stop(ifa->hello_timer);
|
|
|
|
rfree(ifa->hello_timer);
|
|
|
|
}
|
2000-05-17 07:59:38 +08:00
|
|
|
mb_free(ifa);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_int_sm(struct ospf_iface *ifa, int event)
|
|
|
|
{
|
2000-05-01 06:14:31 +08:00
|
|
|
struct proto *p=(struct proto *)(ifa->proto);
|
|
|
|
struct proto_ospf *po=ifa->proto;
|
2000-06-01 02:55:57 +08:00
|
|
|
struct ospf_area *oa=ifa->oa;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-05-09 20:02:48 +08:00
|
|
|
debug("%s: SM on iface %s. Event is \"%s\".\n",
|
2000-04-19 03:22:49 +08:00
|
|
|
p->name, ifa->iface->name, ospf_ism[event]);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
|
|
|
switch(event)
|
|
|
|
{
|
|
|
|
case ISM_UP:
|
|
|
|
if(ifa->state==OSPF_IS_DOWN)
|
|
|
|
{
|
2000-02-24 08:26:10 +08:00
|
|
|
/* Now, nothing should be adjacent */
|
1999-11-17 23:50:41 +08:00
|
|
|
restart_hellotim(ifa);
|
|
|
|
if((ifa->type==OSPF_IT_PTP) || (ifa->type==OSPF_IT_VLINK))
|
|
|
|
{
|
|
|
|
iface_chstate(ifa, OSPF_IS_PTP);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(ifa->priority==0)
|
|
|
|
{
|
|
|
|
iface_chstate(ifa, OSPF_IS_DROTHER);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
iface_chstate(ifa, OSPF_IS_WAITING);
|
|
|
|
restart_waittim(ifa);
|
|
|
|
}
|
|
|
|
}
|
2000-02-24 08:26:10 +08:00
|
|
|
addifa_rtlsa(ifa);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2000-05-31 22:06:33 +08:00
|
|
|
schedule_rt_lsa(ifa->oa);
|
1999-11-17 23:50:41 +08:00
|
|
|
break;
|
|
|
|
case ISM_BACKS:
|
|
|
|
case ISM_WAITF:
|
|
|
|
if(ifa->state==OSPF_IS_WAITING)
|
|
|
|
{
|
|
|
|
bdr_election(ifa ,p);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ISM_NEICH:
|
|
|
|
if((ifa->state==OSPF_IS_DROTHER) || (ifa->state==OSPF_IS_DR) ||
|
|
|
|
(ifa->state==OSPF_IS_BACKUP))
|
|
|
|
{
|
|
|
|
bdr_election(ifa ,p);
|
2000-05-31 22:06:33 +08:00
|
|
|
schedule_rt_lsa(ifa->oa);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2000-05-01 06:14:31 +08:00
|
|
|
break;
|
1999-11-17 23:50:41 +08:00
|
|
|
case ISM_DOWN:
|
|
|
|
iface_chstate(ifa, OSPF_IS_DOWN);
|
|
|
|
downint(ifa);
|
2000-06-01 02:55:57 +08:00
|
|
|
schedule_rt_lsa(oa);
|
1999-11-17 23:50:41 +08:00
|
|
|
break;
|
|
|
|
case ISM_LOOP: /* Useless? */
|
|
|
|
iface_chstate(ifa, OSPF_IS_LOOP);
|
|
|
|
downint(ifa);
|
2000-05-31 22:06:33 +08:00
|
|
|
schedule_rt_lsa(ifa->oa);
|
1999-11-17 23:50:41 +08:00
|
|
|
break;
|
|
|
|
case ISM_UNLOOP:
|
|
|
|
iface_chstate(ifa, OSPF_IS_DOWN);
|
2000-05-31 22:06:33 +08:00
|
|
|
schedule_rt_lsa(ifa->oa);
|
1999-11-17 23:50:41 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("%s: ISM - Unknown event?",p->name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sock *
|
|
|
|
ospf_open_mc_socket(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
sock *mcsk;
|
|
|
|
struct proto *p;
|
|
|
|
|
|
|
|
p=(struct proto *)(ifa->proto);
|
|
|
|
|
2000-05-17 07:59:38 +08:00
|
|
|
mcsk=sk_new(p->pool);
|
|
|
|
mcsk->type=SK_IP_MC;
|
|
|
|
mcsk->dport=OSPF_PROTO;
|
|
|
|
mcsk->saddr=AllSPFRouters;
|
|
|
|
mcsk->daddr=AllSPFRouters;
|
|
|
|
mcsk->tos=IP_PREC_INTERNET_CONTROL;
|
|
|
|
mcsk->ttl=1;
|
|
|
|
mcsk->rx_hook=ospf_rx_hook;
|
|
|
|
mcsk->tx_hook=ospf_tx_hook;
|
|
|
|
mcsk->err_hook=ospf_err_hook;
|
|
|
|
mcsk->iface=ifa->iface;
|
|
|
|
mcsk->rbsize=ifa->iface->mtu;
|
|
|
|
mcsk->tbsize=ifa->iface->mtu;
|
|
|
|
mcsk->data=(void *)ifa;
|
|
|
|
if(sk_open(mcsk)!=0)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-05-17 07:59:38 +08:00
|
|
|
DBG("%s: SK_OPEN: mc open failed.\n",p->name);
|
|
|
|
return(NULL);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2000-05-17 07:59:38 +08:00
|
|
|
DBG("%s: SK_OPEN: mc opened.\n",p->name);
|
|
|
|
return(mcsk);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sock *
|
|
|
|
ospf_open_ip_socket(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
sock *ipsk;
|
|
|
|
struct proto *p;
|
|
|
|
|
|
|
|
p=(struct proto *)(ifa->proto);
|
|
|
|
|
|
|
|
ipsk=sk_new(p->pool);
|
|
|
|
ipsk->type=SK_IP;
|
|
|
|
ipsk->dport=OSPF_PROTO;
|
|
|
|
ipsk->saddr=ifa->iface->addr->ip;
|
|
|
|
ipsk->tos=IP_PREC_INTERNET_CONTROL;
|
|
|
|
ipsk->ttl=1;
|
|
|
|
ipsk->rx_hook=ospf_rx_hook;
|
|
|
|
ipsk->tx_hook=ospf_tx_hook;
|
|
|
|
ipsk->err_hook=ospf_err_hook;
|
|
|
|
ipsk->iface=ifa->iface;
|
|
|
|
ipsk->rbsize=ifa->iface->mtu;
|
|
|
|
ipsk->tbsize=ifa->iface->mtu;
|
|
|
|
ipsk->data=(void *)ifa;
|
|
|
|
if(sk_open(ipsk)!=0)
|
|
|
|
{
|
|
|
|
DBG("%s: SK_OPEN: ip open failed.\n",p->name);
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
DBG("%s: SK_OPEN: ip opened.\n",p->name);
|
|
|
|
return(ipsk);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Of course, it's NOT true now */
|
|
|
|
u8
|
2000-02-24 07:13:10 +08:00
|
|
|
ospf_iface_clasify(struct iface *ifa, struct proto *p)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-02-24 07:23:19 +08:00
|
|
|
DBG("%s: Iface flags=%x.\n", p->name, ifa->flags);
|
1999-11-17 23:50:41 +08:00
|
|
|
if((ifa->flags & (IF_MULTIACCESS|IF_MULTICAST))==
|
|
|
|
(IF_MULTIACCESS|IF_MULTICAST))
|
|
|
|
{
|
2000-02-24 07:13:10 +08:00
|
|
|
DBG("%s: Clasifying BCAST.\n", p->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
return OSPF_IT_BCAST;
|
|
|
|
}
|
|
|
|
if((ifa->flags & (IF_MULTIACCESS|IF_MULTICAST))==
|
|
|
|
IF_MULTIACCESS)
|
|
|
|
{
|
2000-02-24 07:13:10 +08:00
|
|
|
DBG("%s: Clasifying NBMA.\n", p->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
return OSPF_IT_NBMA;
|
|
|
|
}
|
2000-02-24 07:13:10 +08:00
|
|
|
DBG("%s: Clasifying P-T-P.\n", p->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
return OSPF_IT_PTP;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ospf_iface*
|
|
|
|
find_iface(struct proto_ospf *p, struct iface *what)
|
|
|
|
{
|
|
|
|
struct ospf_iface *i;
|
|
|
|
|
|
|
|
WALK_LIST (i, p->iface_list)
|
|
|
|
if ((i)->iface == what)
|
|
|
|
return i;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_if_notify(struct proto *p, unsigned flags, struct iface *iface)
|
|
|
|
{
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
sock *mcsk;
|
2000-06-06 04:57:53 +08:00
|
|
|
struct ospf_config *c=(struct ospf_config *)(p->cf);
|
|
|
|
struct ospf_area_config *ac;
|
|
|
|
struct ospf_iface_patt *ip=NULL;
|
2000-06-06 07:44:26 +08:00
|
|
|
struct nbma_node *nbma,*nb;
|
2000-06-06 04:57:53 +08:00
|
|
|
u8 i;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-02-24 07:13:10 +08:00
|
|
|
DBG("%s: If notify called\n", p->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
if (iface->flags & IF_IGNORE)
|
|
|
|
return;
|
|
|
|
|
2000-06-06 04:57:53 +08:00
|
|
|
if(flags & IF_CHANGE_UP)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-02-24 07:13:10 +08:00
|
|
|
debug("%s: using interface %s.\n", p->name, iface->name);
|
2000-06-06 04:57:53 +08:00
|
|
|
WALK_LIST(ac, c->area_list)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-06-06 04:57:53 +08:00
|
|
|
if(ip=(struct ospf_iface_patt *)
|
|
|
|
iface_patt_match(&ac->patt_list, iface)) break;
|
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-06-06 04:57:53 +08:00
|
|
|
if(ip)
|
|
|
|
{
|
|
|
|
ifa=mb_allocz(p->pool, sizeof(struct ospf_iface));
|
|
|
|
ifa->proto=(struct proto_ospf *)p;
|
|
|
|
ifa->iface=iface;
|
|
|
|
|
|
|
|
ifa->an=ac->areaid; /* FIXME This should respect config */
|
|
|
|
ifa->cost=ip->cost;
|
|
|
|
ifa->rxmtint=ip->rxmtint;
|
|
|
|
ifa->inftransdelay=ip->inftransdelay;
|
|
|
|
ifa->priority=ip->priority;
|
|
|
|
ifa->helloint=ip->helloint;
|
|
|
|
ifa->waitint=ip->waitint;
|
|
|
|
ifa->deadc=ip->deadc;
|
|
|
|
ifa->autype=0; /* FIXME add authentification */
|
|
|
|
for(i=0;i<8;i++) ifa->aukey[i]=0;
|
|
|
|
ifa->options=2; /* FIXME what options? */
|
|
|
|
|
2000-06-06 07:44:26 +08:00
|
|
|
if(ip->type==OSPF_IT_UNDEF)
|
2000-06-06 04:57:53 +08:00
|
|
|
ifa->type=ospf_iface_clasify(ifa->iface, (struct proto *)ifa->proto);
|
|
|
|
else ifa->type=ip->type;
|
|
|
|
|
|
|
|
if(ifa->type!=OSPF_IT_NBMA)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-06-06 04:57:53 +08:00
|
|
|
if((ifa->hello_sk=ospf_open_mc_socket(ifa))==NULL)
|
|
|
|
{
|
|
|
|
log("%s: Huh? could not open mc socket on interface %s?", p->name,
|
|
|
|
iface->name);
|
|
|
|
mb_free(ifa);
|
|
|
|
log("%s: Ignoring this interface.", p->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ifa->dr_sk=NULL;
|
2000-06-06 07:44:26 +08:00
|
|
|
}
|
2000-06-06 04:57:53 +08:00
|
|
|
|
2000-06-06 07:44:26 +08:00
|
|
|
if((ifa->ip_sk=ospf_open_ip_socket(ifa))==NULL)
|
|
|
|
{
|
|
|
|
log("%s: Huh? could not open ip socket on interface %s?", p->name,
|
|
|
|
iface->name);
|
|
|
|
mb_free(ifa);
|
|
|
|
log("%s: Ignoring this interface", p->name);
|
|
|
|
return;
|
|
|
|
}
|
2000-06-06 04:57:53 +08:00
|
|
|
|
2000-06-06 07:44:26 +08:00
|
|
|
init_list(&ifa->neigh_list);
|
|
|
|
init_list(&ifa->nbma_list);
|
|
|
|
WALK_LIST(nb,ip->nbma_list)
|
|
|
|
{
|
|
|
|
nbma=mb_alloc(p->pool,sizeof(struct nbma_node));
|
|
|
|
nbma->ip=nb->ip;
|
|
|
|
add_tail(&ifa->nbma_list, NODE nbma);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2000-06-06 07:44:26 +08:00
|
|
|
|
2000-06-06 04:57:53 +08:00
|
|
|
/* Add hello timer */
|
|
|
|
ifa->hello_timer=tm_new(p->pool);
|
|
|
|
ifa->hello_timer->data=ifa;
|
|
|
|
ifa->hello_timer->randomize=0;
|
|
|
|
ifa->hello_timer->hook=hello_timer_hook;
|
|
|
|
ifa->hello_timer->recurrent=ifa->helloint;
|
|
|
|
DBG("%s: Installing hello timer. (%u)\n", p->name, ifa->helloint);
|
|
|
|
|
|
|
|
ifa->wait_timer=tm_new(p->pool);
|
|
|
|
ifa->wait_timer->data=ifa;
|
|
|
|
ifa->wait_timer->randomize=0;
|
|
|
|
ifa->wait_timer->hook=wait_timer_hook;
|
|
|
|
ifa->wait_timer->recurrent=0;
|
|
|
|
DBG("%s: Installing wait timer. (%u)\n", p->name, ifa->waitint);
|
|
|
|
add_tail(&((struct proto_ospf *)p)->iface_list, NODE ifa);
|
|
|
|
ifa->state=OSPF_IS_DOWN;
|
|
|
|
ospf_int_sm(ifa, ISM_UP);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & IF_CHANGE_DOWN)
|
|
|
|
{
|
|
|
|
if((ifa=find_iface((struct proto_ospf *)p, iface))!=NULL)
|
|
|
|
{
|
2000-06-01 02:31:53 +08:00
|
|
|
debug("%s: killing interface %s.\n", p->name, iface->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_int_sm(ifa, ISM_DOWN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & IF_CHANGE_MTU)
|
|
|
|
{
|
|
|
|
if((ifa=find_iface((struct proto_ospf *)p, iface))!=NULL)
|
|
|
|
{
|
2000-06-01 02:31:53 +08:00
|
|
|
debug("%s: changing MTU on interface %s.\n", p->name, iface->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
/* FIXME: change MTU */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-02 01:52:21 +08:00
|
|
|
void
|
|
|
|
ospf_iface_info(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
cli_msg(-1015,"Interface \"%s\":", ifa->iface->name);
|
|
|
|
cli_msg(-1015,"\tArea: %I (%u)", ifa->oa->areaid, ifa->oa->areaid);
|
|
|
|
cli_msg(-1015,"\tType: %s", ospf_it[ifa->type]);
|
|
|
|
cli_msg(-1015,"\tState: %s", ospf_is[ifa->state]);
|
|
|
|
cli_msg(-1015,"\tPriority: %u", ifa->priority);
|
|
|
|
cli_msg(-1015,"\tCost: %u", ifa->cost);
|
|
|
|
cli_msg(-1015,"\tHello timer: %u", ifa->helloint);
|
|
|
|
cli_msg(-1015,"\tWait timer: %u", ifa->waitint);
|
|
|
|
cli_msg(-1015,"\tDead timer: %u", ifa->deadc*ifa->helloint);
|
|
|
|
cli_msg(-1015,"\tRetransmit timer: %u", ifa->rxmtint);
|
2000-06-06 03:31:55 +08:00
|
|
|
if((ifa->type==OSPF_IT_BCAST)||(ifa->type==OSPF_IT_NBMA))
|
|
|
|
{
|
|
|
|
cli_msg(-1015,"\tDesigned router (ID): %I", ifa->drid);
|
|
|
|
cli_msg(-1015,"\tDesigned router (IP): %I", ifa->drip);
|
|
|
|
cli_msg(-1015,"\tBackup designed router (ID): %I", ifa->bdrid);
|
|
|
|
cli_msg(-1015,"\tBackup designed router (IP): %I", ifa->bdrip);
|
|
|
|
}
|
2000-06-02 01:52:21 +08:00
|
|
|
}
|