Re: RAToolSet 3.5.0 has in/out bug with export policy
- Date: Sat, 7 Dec 1996 13:51:58 -0800
- Posted-date: Sat, 7 Dec 1996 13:51:58 -0800
Sigh:-(
I will make a new release after the IETF. Here is the patch to fix
this for the time being.
Note that this error is only triggered if you have a policy which says
as-out: to ... announce NOT ANY
Thanks Dave for the bug report.
Cengiz
--
Cengiz Alaettinoglu Information Sciences Institute
(310) 822-1511 University of Southern California
http://www.isi.edu/~cengiz
diff -c -r1.12 f_cisco.cc
*** 1.12 1996/12/06 23:01:42
--- f_cisco.cc 1996/12/07 21:48:31
***************
*** 653,659 ****
prfx_alist_no = cisco_print_net_list(s, cisco_access_list_no, 1);
cout << "router bgp " << AS_map(asno) + 2 << "\n"
<< "neighbor " << neighbor
! << " distribute-list " << prfx_alist_no << " in\n";
}
prfx_alist_no = 0;
--- 653,659 ----
prfx_alist_no = cisco_print_net_list(s, cisco_access_list_no, 1);
cout << "router bgp " << AS_map(asno) + 2 << "\n"
<< "neighbor " << neighbor
! << " distribute-list " << prfx_alist_no << " out\n";
}
prfx_alist_no = 0;
|