use of org.batfish.representation.cisco.IpBgpPeerGroup in project batfish by batfish.
the class CiscoControlPlaneExtractor method exitPeer_group_assignment_rb_stanza.
@Override
public void exitPeer_group_assignment_rb_stanza(Peer_group_assignment_rb_stanzaContext ctx) {
String peerGroupName = ctx.name.getText();
int line = ctx.name.getStart().getLine();
BgpProcess proc = currentVrf().getBgpProcess();
if (ctx.address != null) {
Ip address = toIp(ctx.address);
IpBgpPeerGroup ipPeerGroup = proc.getIpPeerGroups().get(address);
if (ipPeerGroup == null) {
proc.addIpPeerGroup(address);
ipPeerGroup = proc.getIpPeerGroups().get(address);
}
ipPeerGroup.setGroupName(peerGroupName);
ipPeerGroup.setGroupNameLine(line);
} else if (ctx.address6 != null) {
Ip6 address6 = toIp6(ctx.address6);
Ipv6BgpPeerGroup ipv6PeerGroup = proc.getIpv6PeerGroups().get(address6);
if (ipv6PeerGroup == null) {
proc.addIpv6PeerGroup(address6);
ipv6PeerGroup = proc.getIpv6PeerGroups().get(address6);
}
ipv6PeerGroup.setGroupName(peerGroupName);
ipv6PeerGroup.setGroupNameLine(line);
}
}
use of org.batfish.representation.cisco.IpBgpPeerGroup in project batfish by batfish.
the class CiscoControlPlaneExtractor method exitNo_neighbor_activate_rb_stanza.
@Override
public void exitNo_neighbor_activate_rb_stanza(No_neighbor_activate_rb_stanzaContext ctx) {
BgpProcess proc = currentVrf().getBgpProcess();
if (ctx.ip != null) {
Ip ip = toIp(ctx.ip);
IpBgpPeerGroup pg = proc.getIpPeerGroups().get(ip);
if (pg == null) {
String message = "ignoring attempt to activate undefined ip peer group: " + ip;
_w.redFlag(message);
} else {
pg.setActive(false);
}
} else if (ctx.ip6 != null) {
Ip6 ip6 = toIp6(ctx.ip6);
Ipv6BgpPeerGroup pg = proc.getIpv6PeerGroups().get(ip6);
if (pg == null) {
String message = "ignoring attempt to activate undefined ipv6 peer group: " + ip6;
_w.redFlag(message);
} else {
pg.setActive(false);
}
} else if (ctx.peergroup != null) {
String pgName = ctx.peergroup.getText();
NamedBgpPeerGroup npg = proc.getNamedPeerGroups().get(pgName);
npg.setActive(false);
for (IpBgpPeerGroup ipg : proc.getIpPeerGroups().values()) {
String currentGroupName = ipg.getGroupName();
if (currentGroupName != null && currentGroupName.equals(pgName)) {
ipg.setActive(false);
}
}
for (Ipv6BgpPeerGroup ipg : proc.getIpv6PeerGroups().values()) {
String currentGroupName = ipg.getGroupName();
if (currentGroupName != null && currentGroupName.equals(pgName)) {
ipg.setActive(false);
}
}
}
}
use of org.batfish.representation.cisco.IpBgpPeerGroup in project batfish by batfish.
the class CiscoControlPlaneExtractor method exitNo_neighbor_shutdown_rb_stanza.
@Override
public void exitNo_neighbor_shutdown_rb_stanza(No_neighbor_shutdown_rb_stanzaContext ctx) {
BgpProcess proc = currentVrf().getBgpProcess();
if (ctx.ip != null) {
Ip ip = toIp(ctx.ip);
IpBgpPeerGroup pg = proc.getIpPeerGroups().get(ip);
// TODO: see if it is always ok to set active on 'no shutdown'
if (pg == null) {
String message = "ignoring attempt to shut down to undefined ip peer group: " + ip;
_w.redFlag(message);
} else {
pg.setActive(true);
pg.setShutdown(false);
}
} else if (ctx.ip6 != null) {
Ip6 ip6 = toIp6(ctx.ip6);
Ipv6BgpPeerGroup pg = proc.getIpv6PeerGroups().get(ip6);
// TODO: see if it is always ok to set active on 'no shutdown'
if (pg == null) {
String message = "ignoring attempt to shut down undefined ipv6 peer group: " + ip6;
_w.redFlag(message);
} else {
pg.setActive(true);
pg.setShutdown(false);
}
} else if (ctx.peergroup != null) {
_w.redFlag("'no shutdown' of peer group unsupported");
}
}
Aggregations