Suggestion for Release/3.4.4 #13
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,6 +1,16 @@
|
||||
|
||||
# Changelog
|
||||
|
||||
## 3.4.4 (2019-01-29)
|
||||
|
||||
* Loading indicators in frontend for received routes and filtered routes
|
||||
* Consequent use of 'alice-lg' instead of 'alicelg'
|
||||
* Use yarn to manage node dependencies
|
||||
* Improved error handling on misconfigured or unavailable sources
|
||||
* Fix issues related to pagination of results
|
||||
* Make search for IPv6 prefixes with netmask work
|
||||
* Add example for routeserver ids as strings to config and overall improvement
|
||||
|
||||
## 3.4.0 (2018-12-09)
|
||||
|
||||
* Removed baseUrl from frontend
|
||||
@ -47,5 +57,4 @@
|
||||
## 2.2.6 (2018-01-31)
|
||||
|
||||
* Improved logging of missing birdwatcher modules
|
||||
* Fixed bugs and improved Documentation
|
||||
|
||||
* Fixed bugs and improved documentation
|
||||
|
2
Makefile
2
Makefile
@ -70,7 +70,7 @@ endif
|
||||
cp etc/alice-lg/alice.example.conf $(DIST)/etc/alice-lg/alice.example.conf
|
||||
|
||||
# Copy application
|
||||
cp bin/$(PROG)-linux-$(ARCH) DIST/opt/ecix/alice-lg/bin/.
|
||||
cp bin/$(PROG)-linux-$(ARCH) DIST/opt/alice-lg/alice-lg/bin/.
|
||||
|
||||
|
||||
rpm: dist
|
||||
|
@ -24,7 +24,7 @@ all: client
|
||||
|
||||
deps:
|
||||
@echo "Installing dependencies"
|
||||
# yarn install
|
||||
yarn install
|
||||
|
||||
client: deps
|
||||
@echo "Building alice UI"
|
||||
|
@ -1,7 +1,15 @@
|
||||
# ======================================
|
||||
# Alice-LG configuration example
|
||||
# ======================================
|
||||
|
||||
[server]
|
||||
# configures the built-in webserver and provides global application settings
|
||||
listen_http = 127.0.0.1:7340
|
||||
enable_prefix_lookup = true
|
||||
# enable the prefix-lookup endpoint / the global search feature
|
||||
asn = 9033
|
||||
# this ASN is used as a fallback value in the RPKI feature and for route
|
||||
# filtering evaluation with large BGP communities
|
||||
|
||||
[theme]
|
||||
path = /path/to/my/alice/theme/files
|
||||
@ -9,7 +17,7 @@ path = /path/to/my/alice/theme/files
|
||||
url_base = /theme
|
||||
|
||||
[pagination]
|
||||
# Routes can be paginated, which comes in handy with
|
||||
# Routes tables can be paginated, which comes in handy with
|
||||
# peers announcing a lot of routes. Set to 0 to disable
|
||||
# pagination.
|
||||
routes_filtered_page_size = 250
|
||||
@ -17,6 +25,8 @@ routes_accepted_page_size = 250
|
||||
routes_not_exported_page_size = 250
|
||||
|
||||
[rejection_reasons]
|
||||
# a pair of a large BGP community value and a string to signal the processing
|
||||
# results of route filtering
|
||||
9033:65666:1 = An IP Bogon was detected
|
||||
9033:65666:2 = Prefix is longer than 64
|
||||
9033:65666:3 = Prefix is longer than 24
|
||||
@ -40,6 +50,8 @@ communities = 6695:1102:14, 6695:1102:15, 23:42:46
|
||||
load_on_demand = true # Default: false
|
||||
|
||||
[noexport_reasons]
|
||||
# a pair of a large BGP community value and a string to signal the processing
|
||||
# results of route distribution and the distribution policy applied to a route
|
||||
9033:65667:1 = The target peer policy is Fairly-open and the sender ASN is an exception
|
||||
9033:65667:2 = The target peer policy is Selective and the sender ASN is no exception
|
||||
9033:65667:3 = The target peer policy is set to restrictive
|
||||
@ -52,6 +64,8 @@ load_on_demand = true # Default: false
|
||||
|
||||
|
||||
[rpki]
|
||||
# shows rpki validation status in the client, based on the presence of a large
|
||||
# BGP community on the route
|
||||
enabled = true
|
||||
|
||||
# Optional, falling back to defaults as defined in:
|
||||
|
Loading…
x
Reference in New Issue
Block a user