IFCFG-PPP(5) | Network configuration | IFCFG-PPP(5) |
NAME¶
ifcfg-ppp - interface ppp configuration
SYNOPSIS¶
/etc/sysconfig/network/ifcfg-*
/etc/sysconfig/network/providers/provider*
PPP Interfaces¶
To setup a PPP interface you need a configuration file ifcfg-ppp<X> (hint: an arbitrary name might be used for ppp device e.g. dsl0 for DSL connection) with the usual network settings. But you must add additional variables:
- PPPMODE {pppoe|pppoatm|pptp|isdn|serial|modem}
- must be set to one of the following types to identify this interface as a ppp interface:
pppoe — Point-to-Point over Ethernet (PPPoE) device type.
pppoatm — Point-to-Point over Asynchronous Transfer Mode (PPPoATM) device type. Currently NOT SUPPORTED.
pptp — Point-to-Point Tunneling Protocol (PPTP) device type. Currently NOT SUPPORTED.
isdn — Point-to-Point for ISDN connection types. NOT SUPPORTED.
serial — Point-to-Point for general serial connections via fixed line or modem. NOT SUPPORTED.
modem — Point-to-Point for connections using 3G/UMTS modems. NOT SUPPORTED.
PROVIDER [filename]
PPPDEBUG {true|false}
PPPoE MODE SPECIFIC OPTIONS¶
PROVIDER FILE CONFIGURATION OPTIONS¶
Default: true
DEMAND {true|false}
Default: false
IDLETIME [seconds]
Default: 600
AUTODNS {true|false}
Default: true
DNS1/DNS2 [IP-address]
MODIFYIP/MODIFYIP6 {true|false}
Default: true
IPADDR [IP-address]
REMOTE_IPADDR [IP-address]
IPADDR6 [localinterfaceidentifier]
REMOTE_IPADDR6 [remoteinterfaceidentifier]
MULTILINK {true|false}
Default: false
ENDPOINT [discriminator]
AUTO_RECONNECT {true|false}
Default: false
AUTO_RECONNECT_DELAY [seconds]
Default: 15
MAXFAIL [num]
Default: 10
USERNAME [string]
PASSWORD [string]
Example¶
Example of a simple DSL related PPPoE interface configuration and its corresponding provider file:
/etc/sysconfig/network/ifcfg-dsl0
STARTMODE='auto'
BOOTPROTO='static'
DEVICE='eth0'
PPPMODE='pppoe'
PROVIDER='provider0'
/etc/sysconfig/network/provider/provider0
PROVIDER='Provider name'
AUTODNS='false'
AUTO_RECONNECT='true'
DEFAULTROUTE='true'
DEMAND='false'
IDLETIME=''
MODIFYIP='false'
IPADDR=''
REMOTE_IPADDR=''
MODIFYDNS='false'
USERNAME='user'
PASSWORD='XXXXXXXXXX'
Example of an advanced DSL related PPPoE interface configuration and its corresponding provider file.
/etc/sysconfig/network/ifcfg-dsl1
STARTMODE='auto'
BOOTPROTO='static'
DEVICE='eth1'
PPPMODE='pppoe'
PROVIDER='provider1'
/etc/sysconfig/network/provider/provider1
PROVIDER='Provider name'
AUTODNS='false'
AUTO_RECONNECT='true'
DEFAULTROUTE='true'
DEMAND='true'
IDLETIME=''
MODIFYIP='true'
IPADDR='10.0.0.1'
REMOTE_IPADDR='10.0.0.2'
MODIFYDNS='false'
USERNAME='user'
PASSWORD='XXXXXXXXXX'
Additional Information¶
For additional and more general information take a look into pppd(8). or pppoe(8)
COPYRIGHT¶
Copyright (C) 2016 SUSE Linux GmbH, Nuernberg, Germany.
BUGS¶
Please report bugs as described at <https://bugs.opensuse.org>
AUTHOR¶
Pawel Wieczorkiewicz -- original ppp man page
SEE ALSO¶
May 2016 | wicked |