Questions tagged [quagga]

Quagga is a routing software suite, providing implementations of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms, particularly FreeBSD, Linux, Solaris and NetBSD.

Quagga is a routing software package that provides TCP/IP based routing services with routing protocols support such as RIPv1, RIPv2, RIPng, OSPFv2, OSPFv3, BGP-4, and BGP-4+ (see section Supported RFCs). Quagga also supports special BGP Route Reflector and Route Server behavior. In addition to traditional IPv4 routing protocols, Quagga also supports IPv6 routing protocols. With SNMP daemon which supports SMUX protocol, Quagga provides routing protocol MIBs (see section SNMP Support).

Quagga uses an advanced software architecture to provide you with a high quality, multi server routing engine. Quagga has an interactive user interface for each routing protocol and supports common client commands. Due to this design, you can add new protocol daemons to Quagga easily. You can use Quagga library as your program's client user interface.

Quagga is distributed under the GNU General Public License.

35 questions
0
votes
1 answer

How to configure FRR OSPF so that the route is advertised by the OSPF daemon but not added in the linux routing table?

ip route 1.1.1.1/32 ens33 ip route 1.1.1.2/32 ens33 ! interface ens33 ip ospf 1 area 0 192.168.84.191 ! router ospf 1 ospf router-id 192.168.84.191 redistribute static metric 10000 route-map RM-ens33 ! access-list AC-ens33 seq 1 permit…
Avik Dutta
  • 177
  • 9
0
votes
0 answers

how to create a barcode scanner with quagga with fixed scanning canvas

I'm on Nuxt 2.15.4 and using Quagga2. I want to create a scanner like mobile scanners where the camera is full screen and there is a blue rectangle that the barcode must be placed inside of, and after scanning there will be a red line through the…
Mojtaba Barari
  • 1,127
  • 1
  • 15
  • 49
0
votes
0 answers

When I call a function inside Quagga.onDetected show error `Cannot read property 'searchbybarcode' of undefined`

I'm using quagga plugin form barcode scanner. I want to call searchbybarcode (barcode){} function inside Quagga.onDetected when I have e result. Quagga.onDetected((res) => { console.log('barcode', res.codeResult.code) …
site
  • 247
  • 5
  • 15
0
votes
1 answer

Quagga javascript barcode scanner - Uncaught TypeError: Quagga.init is not a function

I'm trying to write some vanilla javascript code to do barcode scanning from my website, however I can't even get past the first step using the Quagga javascript library. My code is currently this: …
Superdooperhero
  • 7,584
  • 19
  • 83
  • 138
0
votes
1 answer

No /etc/quagga folder and no quagga service

I am trying to use quagga to run BGP. I installed the latest version of quagga from source. According to the documentation, I should have a /etc/quagga folder where I need to copy my bgp config as bgpd.conf However, after installing quagga (using…
brokendreams
  • 827
  • 2
  • 10
  • 29
0
votes
1 answer

experimenting with BGP using Quagga and a set of openWrt routers

I want to learn and experiment with BGP protocol by some non-trivial scenarios: setup anycasting, see how quickly and what way routing changes after I disconnect some link, etc. As I understand I cannot easily and should not do it on "the real…
morgwai
  • 2,513
  • 4
  • 25
  • 31
0
votes
1 answer

Connecting eBGP and iBGP routers in Quagga

I am trying to announce a prefix from AS7 and I like AS6 receive it and send it to AS2(as shown in the attached topology). I have OSPF running on all routers of AS6. I have assigned 10.x.x.x for each loop back interface of my routers in AS6. for…
0
votes
1 answer

How to look at BGP's LOC-RIB using Quagga library

While reading the documentation, I saw that, "You can use Quagga library as your program’s client user interface". Basically, I want to look at BGP's LOC-RIB (RIB = Routing Information Base) that Quagga constructs, with my C program (in Ubuntu/…
user676987
  • 73
  • 1
  • 2
  • 9
0
votes
0 answers

Not getting BGP Notification with Optional Attribute Error

i am working with BGP implementation with Ubuntu, for the testing purpose i want to get 'notification message' indicating 'optional attribbute error'. #!/usr/bin/env python3 import socket import time BGP_IP = '20.0.0.20' MSG1 =…
0
votes
1 answer

Can't able to ping between LER and LSR under MPLS test-bed setup in linux

I have set LDP session running under MPLS test-bed setup in my ubuntu. however, on Ping, able to see ICMP request packets are hitting to Destination interface, but couldn't able to get ICMP Reply. On capturing packets, observed LDP packets (Hello…
0
votes
0 answers

Multiple configuration commands through vtysh

I have device configuration saved in a file and use it to configure through vtysh. config,err := ioutil.ReadFile(filePath) if err != nil { fmt.Println("Read err:") fmt.Println(err) os.Exit(1) } cmd := exec.Command("vtysh", "-c",…
ironhyde
  • 936
  • 7
  • 12
0
votes
1 answer

Packet forwarding between interfaces

I have a router with 2 interaces eth0 with IP 10.2.40.4 and eth2 with IP 10.2.20.3 I want the traffic from 10.2.40.0/24 network to egress out of 10.2.20.3 interface whose next hop IP is 10.2.20.1 I followed the below doc:…
0
votes
1 answer

Implementing ospf topology collector

I need to implement a software module that is able to retrieve the topology of an autonomous system. Looking at the various protocol that are implemented in Cisco routers i concluded that the only two alternatives to obtain topology are smnp and…
LuigiDB
  • 72
  • 9
0
votes
1 answer

Troubling using QuaggaJS - Javascript Barcode Scanner

I am using QuaggaJS. On the home page there, it has basic descriptions of its main methods, as well as an example html folder in its downloadable zip. My problem, is that one of the example HTMLs is called static_images. This takes in image src's…
Austin
  • 3,010
  • 23
  • 62
  • 97
0
votes
2 answers

where quagga stores BGP Table in Linux file system

I am using quagga with fedora 18. I successfully formed the neighbor relationship between the peers. I can also see the result of sh ip bgp command. My question is in which file does the quagga saves the bgp table entries in the linux file system.…