Network - Interfaces


This is a list of all network profiles
managed with netctl

Click on the profile names to manage them.

{% for _,profile in ipairs(interfaces) do %} {% end %}
Profile name Method Enabled Link State IP configuration
{% if profile.method == "ppp" then %} {{profile.name}} ({{profile.interface}}) {% else %} {{profile.name}} ({{profile.interface}}) {% end %} {{profile.method}} {% if profile.enabled == "enabled" then %} Yes {% else %} No {% end %} {{profile.link_state}} {% if profile.method == "static" then %} Address: {{profile.address}}
Netmask: {{profile.netmask}}
Gatweway: {{profile.gateway}} {% elseif profile.method == "dhcp" then %} Obtain from DHCP {% elseif profile.method == "ppp" then %} Obtain from PPP {% end %}

Virtual Interfaces

Click on the profile names to manage them.

{% for _,profile in ipairs(vlans) do %} {% end %}
Profile name Method Enabled Link State IP configuration
{{profile.name}} ({{profile.parent}}-{{profile.vlaninterface}}) {{profile.method}} {% if profile.enabled == "enabled" then %}Yes{% else %}No{% end %} {{profile.link_state}} {% if profile.method == "static" then %} Address: {{profile.address}}
Netmask: {{profile.netmask}}
Gatweway: {{profile.gateway}} {% elseif profile.method == "dhcp" then %} Obtain from DHCP {% elseif profile.method == "ppp" then %} Obtain from PPP {% end %}