Add: CI auto update for filter
continuous-integration/drone/push Build is passing Details

This commit is contained in:
186526 2022-12-28 16:46:22 +08:00
parent ab55cbffd8
commit a6c953b9bd
3 changed files with 48 additions and 2 deletions

View File

@ -2,6 +2,12 @@ kind: pipeline
type: docker
name: default
trigger:
event:
include:
- push
- pull_request
steps:
- name: test
image: alpine:latest
@ -9,3 +15,34 @@ steps:
- sed -i '1i\include "./config-example.conf";' bird.conf
- apk add bird
- bird -p -c ./bird.conf
---
kind: pipeline
type: docker
name: updateFilter
trigger:
branch:
- main
event:
include:
- push
- cron
steps:
- name: update filter
image: debian:latest
commands:
- apt-get update -y && apt-get install bgpq4 -y
- echo "define $(bgpq4 -tbl DOWNSTREAM_ASN AS-NET186 -S RIPE)" > util/irr-filter.conf
- echo "define $(bgpq4 -6bl DOWNSTREAM_PREFIXES AS-NET186)" >> util/irr-filter.conf
- name: push to repo
image: appleboy/drone-git-push
settings:
branch: production
remote: git@direct-git.186526.xyz:186526/net186-config.git
force: true
commit_message: "[CI] Update: update filter"
commit: true
ssh_key:
from_secret: ssh_private_key

View File

@ -2,8 +2,6 @@ router id 10.0.0.101;
define LOCAL_ASN = 200536;
define DOWNSTREAM_ASN = [ 140506, 200536 ];
define POP = 101;
define REGION = 100;

11
util/irr-filter.conf Normal file
View File

@ -0,0 +1,11 @@
# Example:
# define DOWNSTREAM_ASN = [ 200536 ];
# use bgpq4 generate this file:
# echo "define $(bgpq4 -tbl DOWNSTREAM_ASN AS-NET186 -S RIPE)" > util/irr-filter.conf
# echo "define $(bgpq4 -6bl DOWNSTREAM_PREFIXES AS-NET186 -S RIPE)" >> util/irr-filter.conf
define DOWNSTREAM_ASN = [ 200536 ];
define DOWNSTREAM_PREFIXES = [
2a0a:6040:a900::/40
];