diff options
author | Jan Maria Matejka <mq@ucw.cz> | 2018-03-06 16:03:35 +0100 |
---|---|---|
committer | Jan Maria Matejka <mq@ucw.cz> | 2018-03-08 12:57:39 +0100 |
commit | 0575c7db723523701d5582e2a9058cb5c46951c9 (patch) | |
tree | f155f748c46087c447ace5627c7861ea5def411d /filter | |
parent | d0f47327f81a278d6adb3d0a6c235ea715798d01 (diff) |
Config: Dropped the ipv4:netmask4 syntax for IPv4 prefixes.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/test.conf2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/test.conf2 b/filter/test.conf2 index 2a5d896b..83554952 100644 --- a/filter/test.conf2 +++ b/filter/test.conf2 @@ -76,8 +76,8 @@ protocol static { route 62.168.0.0/25 reject; route 1.2.3.4/32 via 195.113.31.124; route 10.0.0.0/8 reject; - route 10.1.1.0:255.255.255.0 via 62.168.0.3; - route 10.1.2.0:255.255.255.0 via 62.168.0.3; - route 10.1.3.0:255.255.255.0 via 62.168.0.4; + route 10.1.1.0/24 via 62.168.0.3; + route 10.1.2.0/24 via 62.168.0.3; + route 10.1.3.0/24 via 62.168.0.4; route 10.2.0.0/24 via "arc0"; } |