You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to reconfigure the piranha to be in debug and verbose mode:
./configure --debug --verbose
make
sudo make install
but this doesn't give me any additional information(I checked the Piranha's code and there should be plenty of debug info)
What am I doing wrong?
Here's my config file:
# Piranha BGP Daemon configuration file
#
# [local_as]
# Local autonmous system number
local_as 64512
# [local_ip]
# Local IP Address to listen on.
# must be set in order to work.
# if you do not want to support ipv4 or ipv6
# comment the local_ipX out.
local_ip4 127.0.0.1
local_ip6 fe80::1
# [local_port] (default:179)
# Local port in which you want to listen().
local_port4 179
local_port6 179
# [export] (default: none)
# choose which route attributes to export
# in dump files
export origin
export aspath
export community
export extcommunity
#export largecommunity
# [bgp_router_id]
# BGP Router identifier, MUST be set to something else
# than 0.0.0.0 !
bgp_router_id 127.0.0.1
# [user]
user nobody
# [neighbor]
# neighbors/peers definition
# neighbor <ip4|ipv6> <ASN> [optional password]
neighbor 127.0.0.1 65002
I'm starting a GoBGP in a docker with a config file in the working directory from where I'm starting docker:
docker run --rm -it -v $(pwd):/config jauderho/gobgp:latest
The config file needs to be called gobgp.toml and contain:
Hello,
I'm trying to run piranha(v1.1.4) on Ubuntu, but I'm getting the following error on start:
I tried to reconfigure the piranha to be in debug and verbose mode:
but this doesn't give me any additional information(I checked the Piranha's code and there should be plenty of debug info)
What am I doing wrong?
Here's my config file:
I'm starting a GoBGP in a docker with a config file in the working directory from where I'm starting docker:
The config file needs to be called
gobgp.toml
and contain:Any help would be heavily appreciated
The text was updated successfully, but these errors were encountered: