summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
m---------docs/_include/vyos-1x0
-rw-r--r--docs/_static/images/eve-ng-vyos.pngbin0 -> 4228 bytes
-rw-r--r--docs/changelog/1.3.rst16
-rw-r--r--docs/changelog/1.4.rst37
-rw-r--r--docs/configexamples/dhcp-relay-through-gre-bridge.rst13
-rw-r--r--docs/configuration/interfaces/tunnel.rst15
-rw-r--r--docs/configuration/service/pppoe-server.rst1
-rw-r--r--docs/configuration/system/name-server.rst2
8 files changed, 77 insertions, 7 deletions
diff --git a/docs/_include/vyos-1x b/docs/_include/vyos-1x
-Subproject a394e6939c0ec4a59664a83a4ce25a893cc6a17
+Subproject bfc8b264aae5b48247c28fc4d43d762f090c20d
diff --git a/docs/_static/images/eve-ng-vyos.png b/docs/_static/images/eve-ng-vyos.png
new file mode 100644
index 00000000..fdd196a7
--- /dev/null
+++ b/docs/_static/images/eve-ng-vyos.png
Binary files differ
diff --git a/docs/changelog/1.3.rst b/docs/changelog/1.3.rst
index dc00129b..2bbca922 100644
--- a/docs/changelog/1.3.rst
+++ b/docs/changelog/1.3.rst
@@ -8,6 +8,20 @@
_ext/releasenotes.py
+2021-04-08
+==========
+
+* :vytask:`T3456` (bug): firewall: rules that should be deleted seem to be still in use
+
+
+2021-04-05
+==========
+
+* :vytask:`T1612` (default): dhcp-server time-offset fails to validate
+* :vytask:`T3438` (bug): VRF: removing vif which belongs to a vrf, will delete the entire vrf from the operating system
+* :vytask:`T3418` (bug): BGP: system wide known interface can not be used as neighbor
+
+
2021-04-04
==========
@@ -210,7 +224,7 @@
2021-02-16
==========
-* :vytask:`T3318` (feature): Update Linux Kernel to v5.4.109 / 5.10.27
+* :vytask:`T3318` (feature): Update Linux Kernel to v5.4.111 / 5.10.29
2021-02-14
diff --git a/docs/changelog/1.4.rst b/docs/changelog/1.4.rst
index 21d95a51..e8e21c86 100644
--- a/docs/changelog/1.4.rst
+++ b/docs/changelog/1.4.rst
@@ -8,6 +8,39 @@
_ext/releasenotes.py
+2021-04-11
+==========
+
+* :vytask:`T3435` (bug): NAT rules show corruption
+
+
+2021-04-10
+==========
+
+* :vytask:`T3460` (bug): bgp, Configuration FRR failed while commiting code
+
+
+2021-04-09
+==========
+
+* :vytask:`T3464` (bug): OSPF: route-map names containing a hypen are not "found"
+
+
+2021-04-08
+==========
+
+* :vytask:`T3462` (default): show ipv6 bgp -- missing
+* :vytask:`T3456` (bug): firewall: rules that should be deleted seem to be still in use
+* :vytask:`T3463` (bug): Prevent IPv4 Route exchange with IPv6 neighbors
+
+
+2021-04-05
+==========
+
+* :vytask:`T3438` (bug): VRF: removing vif which belongs to a vrf, will delete the entire vrf from the operating system
+* :vytask:`T3418` (bug): BGP: system wide known interface can not be used as neighbor
+
+
2021-04-04
==========
@@ -30,7 +63,7 @@
==========
* :vytask:`T3415` (feature): bridge: add support for isolated interfaces (private-vlan)
-* :vytask:`T1711` (feature): Bgp set local-AS number one time
+* :vytask:`T1711` (feature): BGP - migrate from tagNode to node (remove ASN from tagNode)
2021-03-28
@@ -234,7 +267,7 @@
==========
* :vytask:`T3313` (bug): ospfv3 interface missing options
-* :vytask:`T3318` (feature): Update Linux Kernel to v5.4.109 / 5.10.27
+* :vytask:`T3318` (feature): Update Linux Kernel to v5.4.111 / 5.10.29
2021-02-15
diff --git a/docs/configexamples/dhcp-relay-through-gre-bridge.rst b/docs/configexamples/dhcp-relay-through-gre-bridge.rst
index 0ebaa967..10184970 100644
--- a/docs/configexamples/dhcp-relay-through-gre-bridge.rst
+++ b/docs/configexamples/dhcp-relay-through-gre-bridge.rst
@@ -1,3 +1,8 @@
+
+
+
+
+
.. _examples-dhcp-relay-through-gre-bridge:
@@ -24,8 +29,8 @@ DHCP Server
set interfaces loopback lo address '192.168.3.3/24'
set interfaces tunnel tun100 address '172.16.0.2/30'
set interfaces tunnel tun100 encapsulation 'gretap'
- set interfaces tunnel tun100 local-ip '10.0.2.1'
- set interfaces tunnel tun100 remote-ip '192.168.0.1'
+ set interfaces tunnel tun100 source-address '10.0.2.1'
+ set interfaces tunnel tun100 remote '192.168.0.1'
set protocols ospf area 0 network '192.168.3.0/24'
set protocols ospf area 0 network '10.0.2.0/24'
set protocols ospf parameters router-id '192.168.3.3'
@@ -62,8 +67,8 @@ DHCP Relay
set interfaces loopback lo address '10.100.100.1'
set interfaces tunnel tun100 address '172.16.0.1/30'
set interfaces tunnel tun100 encapsulation 'gretap'
- set interfaces tunnel tun100 local-ip '192.168.0.1'
- set interfaces tunnel tun100 remote-ip '10.0.2.1'
+ set interfaces tunnel tun100 source-address '192.168.0.1'
+ set interfaces tunnel tun100 remote '10.0.2.1'
set protocols ospf area 0 network '10.0.1.0/24'
set protocols ospf area 0 network '192.168.0.0/24'
set protocols ospf area 0 network '10.100.100.0/24'
diff --git a/docs/configuration/interfaces/tunnel.rst b/docs/configuration/interfaces/tunnel.rst
index 36b1d70b..7f7cd709 100644
--- a/docs/configuration/interfaces/tunnel.rst
+++ b/docs/configuration/interfaces/tunnel.rst
@@ -201,6 +201,21 @@ An example:
set interfaces tunnel tun0 address 172.16.17.18/24
set interfaces tunnel tun0 parameters ip key 20
+GRETAP
+^^^^^^^
+
+While normal GRE is for layer 3, GRETAP is for layer 2. GRETAP can encapsulate
+Ethernet frames, thus it can be bridged with other interfaces to create
+datalink layer segments that span multiple remote sites.
+
+.. code-block:: none
+
+ set interfaces bridge br0 member interface eth0
+ set interfaces bridge br0 member interface tun0
+ set interfaces tunnel tun0 encapsulation gretap
+ set interfaces tunnel tun0 source-address 198.51.100.2
+ set interfaces tunnel tun0 remote 203.0.113.10
+
Troubleshooting
^^^^^^^^^^^^^^^
diff --git a/docs/configuration/service/pppoe-server.rst b/docs/configuration/service/pppoe-server.rst
index 8d895f9d..ad99cec0 100644
--- a/docs/configuration/service/pppoe-server.rst
+++ b/docs/configuration/service/pppoe-server.rst
@@ -388,6 +388,7 @@ The example below covers a dual-stack configuration via pppoe-server.
set service pppoe-server client-ip-pool stop '192.168.0.10'
set service pppoe-server client-ipv6-pool delegate '2001:db8:8003::/48' delegation-prefix '56'
set service pppoe-server client-ipv6-pool prefix '2001:db8:8002::/48' mask '64'
+ set service pppoe-server ppp-options ipv6 allow
set service pppoe-server name-server '10.1.1.1'
set service pppoe-server name-server '2001:db8:4860::8888'
set service pppoe-server interface 'eth2'
diff --git a/docs/configuration/system/name-server.rst b/docs/configuration/system/name-server.rst
index 1896eeda..c105c712 100644
--- a/docs/configuration/system/name-server.rst
+++ b/docs/configuration/system/name-server.rst
@@ -4,6 +4,8 @@
System DNS
##########
+.. warning:: If you are configuring a VRF for management purposes, there is
+ currently no way to force system DNS traffic via a specific VRF.
This section describes configuring DNS on the system, namely: