Comment # 9 on bug 1184460 from
(In reply to Carla Schroder from comment #8)
> This is the section I am looking at, is this a good example for configuring
> routing, and where to use a netmask?
> 
> Also, what is <extrapara>foo</extrapara>?
> 
>   <routing>
>     <ipv4_forward config:type="boolean">false</ipv4_forward>
>     <ipv6_forward config:type="boolean">false</ipv6_forward>
>     <routes config:type="list">
>       <route>
>         <destination>192.168.2.1/24</destination>
>         <name>eth0</name>
>         <extrapara>foo</extrapara>
>         <gateway>-</gateway>
>       </route>
>       <route>
>         <destination>default</destination>
>         <name>eth0</name>
>         <gateway>192.168.1.1</gateway>
>       </route>
>       <route>
>         <destination>default</destination>
>         <name>lo</name>
>         <gateway>192.168.5.1</gateway>
>       </route>
>     </routes>

I will try to create a PR in doc-sle providing some examples.

It seems extrapara is not documented and basically it is the routes 5th field
(extra options)

https://documentation.suse.com/sles/15-SP2/html/SLES-all/cha-network.html#sec-network-yast-change-route

Example:

<route>
  <destination>default</destination>
  <name>eth0</name>
  <gateway>192.168.1.1</gateway>
  <extrapara>table 100 metric 150</extrapara>
</route>


You are receiving this mail because: