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
6
votes
1 answer

Quagga doesn't locate or decode barcodes

I'm trying to make a barcode scanner with Quagga. But I can only see the live version of the webcam, but it doesn't recognize any (code 128) barcode. (The snippet doesn't show the webcam on stackoverflow.) I think that I'm missing a step, but hope…
D. J.
  • 684
  • 6
  • 25
5
votes
0 answers

How to use a camera stream multiple times

I want to create a PWA which acts as a bar- and QR-code scanner. For detecting QR-codes I use jsQR (see: https://github.com/cozmo/jsQR), for barcodes, I want to use QuaggaJS (see: https://serratus.github.io/quaggaJS/). To select the type of code…
patrick
  • 51
  • 2
5
votes
5 answers

implementing quagga scanning barcodes

I am making an online scan application just with HTML5 and javascript using Quagga.js. I need to get the webcam working for searching barcodes and imported quagga.js : On the web page of quagga you'll find a method called Quagga.init. to initialize…
2
votes
0 answers

How to turn off Blackscreen in IOS Web View

Using Quagga.js, we are working on barcode recognition in web view. It works fine on the mobile web, but it happens on the APP. The problem is two things below. The target div provided by Quagga does not contain the camera, but switches to the full…
choiryn
  • 21
  • 3
2
votes
0 answers

Quagga routers with ospf emulated in mininext: Ping failing randomly

I am using mininext to run emulate Quagga routers which are running ospf. But the pingall command fails randomly. Any ideas? mininext> pingall *** Ping: testing ping reachability a1 -> b1 c1 d1 h1 h2 h3 h4 h5 h6 h7 h8 b1 -> a1 c1 d1 h1 h2 h3 h4 h5…
sinhayash
  • 2,693
  • 4
  • 19
  • 51
2
votes
0 answers

net-snmp is unknown for agentx extention of quagga daemons MIBs

I have installed net-snmp and built it with agentx support. For sub agent I am using quagga daemons. All the setup is on localhost. I have also did configuration changes in snmpd.conf zebra.conf ripd.conf ospfd.conf rc.conf After starting snmpd…
Rajesh Kumar
  • 349
  • 3
  • 18
1
vote
0 answers

How i can use my back camera of my phone in the browser with QUAGGA JS

i want to use Quagga js in my webapp to scan a barcodes... The problem is that i want use the mobile's back camera, in the documentation say's that quagga use a parameter called "facingMode". If you set facingMode = "enviroment" that use the webcam…
Jcbreppe
  • 31
  • 5
1
vote
0 answers

Mininet ospf6d IPv6 Quagga

enjoy my English. I am running a topology of the image in Mininet with Ipv6, for this I use Quagga through ospf6d. But I can't get routing, I've done the proper script, but I feel like it's part of the configuration that makes it not…
JRamos
  • 11
  • 1
1
vote
0 answers

No Packet captured by Wireshark when using mininet inside Python

I'm doing this Simple OSPF mininet Experiment. https://github.com/qyang18/Mininet-Quagga Using mininet-vm, installed Quagga and confirm it's working. Open QuaggaOSPF.py by $ sudo python QuaggaOSPF.py I got mininet> pingall *** Ping: testing ping…
jaki235
  • 11
  • 2
1
vote
1 answer

Quagga not propagating prefix to other eBGP neighbour

I am trying to get Quagga do something as simple as advertising a eBGP learned prefix to another eBGP connected neighbour. Simple enough right? BGPd config snippet ! router bgp 64620 bgp router-id 172.29.253.80 bgp log-neighbor-changes network…
Ossar
  • 23
  • 5
1
vote
1 answer

Replay BGP Updates to Quagga

I have a small setup where there are 3 connected ASes running Quagga, and I want to test this setup by replaying historical BGP data. How can I do this? I'd appreciate any thoughts and guidance.
Azzam
  • 15
  • 3
1
vote
1 answer

docker & Quagga BGP

I bundled Qugaa bgpd and nsm binaries into a docker based on Ubuntu 3.13.0-36-generic kernel. Now I run multiple of these dockers on a linux sever. These dockers are instantiated using docker-py. I used pipework and created an Ethernet interface on…
user2896235
  • 339
  • 3
  • 17
0
votes
0 answers

How to design Quagga scanner?

that my Quagga scanner Quagga.init( { inputStream: { name: "Live", type: "LiveStream", target: document.querySelector("#camera"), }, decoder: { readers: [ "code_128_reader", "ean_reader", …
Tamosss
  • 1
  • 1
0
votes
0 answers

Using multiple barcode formats in ngx-barcode-scanner

I'm trying to use ngx barcode scanner to scan barcodes with different formats using device's camera. User should be able to scan barcode without knowing which format it is (code 39, code 128 and i2of5 are the most common). When passing all possible…
PabloK
  • 11
  • 2
0
votes
0 answers

Quagga Barcode OnDetected Keeps firing on apple mobile

I have a PWA app using the Quagga Barcode library. It works fine on desktop but in mobile mode on apple iphone12 once it detects a barcode the OnDetected keeps firing over and over. On the OnDetected routine i simply put a alert to display code…
1
2 3