[leaf-commits] src/bering-uclibc4/source/accel-pptp pptpd.conf, NONE, 1.1 buildtool.cfg, 1.7, 1.8 buildtool.mk, 1.3, 1.4

Andrew <[email protected]>
Newsgroups gmane.linux.leaf.cvs
Message-ID <[email protected]>
Update of /cvsroot/leaf/src/bering-uclibc4/source/accel-pptp
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv32669

Modified Files:
	buildtool.cfg buildtool.mk 
Added Files:
	pptpd.conf 
Log Message:
Added options (with explaination) that were missed into original pptpd.conf


--- NEW FILE: pptpd.conf ---
###############################################################################
# $Id: pptpd.conf,v 1.1 2010/10/19 17:06:51 nitr0man Exp $
#
# Sample Poptop configuration file /etc/pptpd.conf
#
# Changes are effective when pptpd is restarted.
###############################################################################

# TAG: ppp
#	Path to the pppd program, default '/usr/sbin/pppd' on Linux
#
#ppp /usr/sbin/pppd

# TAG: option
#	Specifies the location of the PPP options file.
#	By default PPP looks in '/etc/ppp/options'
#
option /etc/ppp/options.pptpd

# TAG: debug
#	Turns on (more) debugging to syslog
#
#debug

# TAG: stimeout
#	Specifies timeout (in seconds) on starting ctrl connection
#
# stimeout 10

# TAG: noipparam
#       Suppress the passing of the client's IP address to PPP, which is
#       done by default otherwise.
#
#noipparam

# TAG: logwtmp
#	Use wtmp(5) to record client connections and disconnections.
#
logwtmp

# TAG: bcrelay <if>
#	Turns on broadcast relay to clients from interface <if>
#
#bcrelay eth1

# TAG: delegate
#       Delegates the allocation of client IP addresses to pppd.
#
#       Without this option, which is the default, pptpd manages the list of
#       IP addresses for clients and passes the next free address to pppd.
#       With this option, pptpd does not pass an address, and so pppd may use
#       radius or chap-secrets to allocate an address.
#
delegate

# TAG: connections
#       Limits the number of client connections that may be accepted.
#
#       If pptpd is allocating IP addresses (e.g. delegate is not
#       used) then the number of connections is also limited by the
#       remoteip option.  The default is 100.
connections 1000


# TAG: localip
# TAG: remoteip
#	Specifies the local and remote IP address ranges.
#
#       Any addresses work as long as the local machine takes care of the
#       routing.  But if you want to use MS-Windows networking, you should
#       use IP addresses out of the LAN address space and use the proxyarp
#       option in the pppd options file, or run bcrelay.
#
#	You can specify single IP addresses seperated by commas or you can
#	specify ranges, or both. For example:
#
#		192.168.0.234,192.168.0.245-249,192.168.0.254
#
#	IMPORTANT RESTRICTIONS:
#
#	1. No spaces are permitted between commas or within addresses.
#
#	2. If you give more IP addresses than MAX_CONNECTIONS, it will
#	   start at the beginning of the list and go until it gets 
#	   MAX_CONNECTIONS IPs. Others will be ignored.
#
#	3. No shortcuts in ranges! ie. 234-8 does not mean 234 to 238,
#	   you must type 234-238 if you mean this.
#
#	4. If you give a single localIP, that's ok - all local IPs will
#	   be set to the given one. You MUST still give at least one remote
#	   IP for each simultaneous client.
#
# (Recommended)
#localip 192.168.0.1-4
#remoteip 192.168.0.234-238
# or
#localip 192.168.0.234-238,192.168.0.245
#remoteip 192.168.1.234-238,192.168.1.245

#speed 4800

Index: buildtool.cfg
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc4/source/accel-pptp/buildtool.cfg,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** buildtool.cfg	16 Oct 2010 13:08:58 -0000	1.7
--- buildtool.cfg	19 Oct 2010 17:06:51 -0000	1.8
***************
*** 24,31 ****
  </File>
  
  <Package>
  	<accel>
  		Version = 0.8.5
! 		Revision = 2
  
  		Help <<EOF
--- 24,37 ----
  </File>
  
+ <File pptpd.conf>
+   Server = cvs4-sourceforge
+   Revision = HEAD
+   Directory = accel-pptp
+ </File>
+ 
  <Package>
  	<accel>
  		Version = 0.8.5
! 		Revision = 3
  
  		Help <<EOF

Index: buildtool.mk
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc4/source/accel-pptp/buildtool.mk,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** buildtool.mk	16 Oct 2010 13:08:58 -0000	1.3
--- buildtool.mk	19 Oct 2010 17:06:51 -0000	1.4
***************
*** 47,51 ****
  	cp -a $(PPTP_DIR)/pppd_plugin/src/.libs/pptp.so.0.0.0 $(PPTP_TARGET_DIR)/usr/lib/pppd/pptp.so
  	cp -a $(PPTP_DIR)/pptpd-1.3.3/plugins/*.so $(PPTP_TARGET_DIR)/usr/lib/pptpd
! 	cp -a $(PPTP_DIR)/example/etc/pptpd.conf $(PPTP_TARGET_DIR)/etc
  	cp -a $(PPTP_DIR)/example/etc/ppp/options.pptpd $(PPTP_TARGET_DIR)/etc/ppp
  	cp -a $(PPTP_DIR)/example/etc/ppp/options.pptp $(PPTP_TARGET_DIR)/etc/ppp
--- 47,52 ----
  	cp -a $(PPTP_DIR)/pppd_plugin/src/.libs/pptp.so.0.0.0 $(PPTP_TARGET_DIR)/usr/lib/pppd/pptp.so
  	cp -a $(PPTP_DIR)/pptpd-1.3.3/plugins/*.so $(PPTP_TARGET_DIR)/usr/lib/pptpd
! #	cp -a $(PPTP_DIR)/example/etc/pptpd.conf $(PPTP_TARGET_DIR)/etc
! 	cp -a pptpd.conf $(PPTP_TARGET_DIR)/etc
  	cp -a $(PPTP_DIR)/example/etc/ppp/options.pptpd $(PPTP_TARGET_DIR)/etc/ppp
  	cp -a $(PPTP_DIR)/example/etc/ppp/options.pptp $(PPTP_TARGET_DIR)/etc/ppp


------------------------------------------------------------------------------
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.