Displaying 20 results from an estimated 81 matches for "lcp".
Did you mean:
cp
2001 Sep 01
0
Uneditted logfile for my ppp+tinc messup
Blame guus.
--
Rob 'robster' Bradford
Chief Editor/Lead developer
DebianPlanet.org
-------------- next part --------------
Sep 1 10:24:02 zeus syslogd 1.4.1#2: restart.
Sep 1 10:24:17 zeus pppd[326]: rcvd [LCP EchoRep id=0x92 magic=0x9936a81f]
Sep 1 10:24:47 zeus pppd[326]: sent [LCP EchoReq id=0x93 magic=0x48b43815]
Sep 1 10:24:47 zeus pppd[326]: rcvd [LCP EchoRep id=0x93 magic=0x9936a81f]
Sep 1 10:25:17 zeus pppd[326]: sent [LCP EchoReq id=0x94 magic=0x48b43815]
Sep 1 10:25:17 zeus pppd[326]: rcvd...
2005 Aug 17
0
ppp winbind type 5 error
I'm having a trouble.
I use winXP to connect through L2TP/IPsec to one Linux server.
When I try to connect in my domain appear an error at log.
Plugin winbind.so loaded.
WINBIND plugin initialized.
using channel 36
Using interface ppp1
Connect: ppp1 <--> /dev/pts/3
sent [LCP ConfReq id=0x1 <mru 1410> <asyncmap 0x0> <auth chap MD5>
<magic 0x564e3dc9> <pcomp> <accomp>]
rcvd [LCP ConfReq id=0x0 <mru 1400> <magic 0x17201f33> <pcomp> <accomp>
<callback CBCP>]
sent [LCP ConfRej id=0x0 <callback CBCP>]
rc...
2010 Jun 02
1
Regression of 5616?
...616?
Jun 2 16:56:05 debian pppd[17472]: pppd 2.4.4 started by root, uid 0
Jun 2 16:56:05 debian pppd[17472]: using channel 17
Jun 2 16:56:05 debian pppd[17472]: Using interface ppp0
Jun 2 16:56:05 debian pppd[17472]: Connect: ppp0 <--> /dev/pts/2
Jun 2 16:56:05 debian pppd[17472]: sent [LCP ConfReq id=0x1 <asyncmap 0x0>
<auth chap MS-v2> <magic 0xa2912b7> <pcomp> <accomp>]
Jun 2 16:56:05 debian pptpd[17470]: GRE: Bad checksum from pppd.
Jun 2 16:56:05 debian pppd[17472]: rcvd [LCP ConfReq id=0x0 <mru 1400>
<magic 0x648b71fd> <pcomp> &l...
2009 Mar 12
3
avoiding termination of nls given convergence failure
...cript in which I repeatedly fit a nonlinear regression to
a series of data sets using nls and the port algorithm from within a loop.
The general structure of the loop is:
for(i in 1:n){
… extract relevant vectors of dependent and independent variables …
… estimate starting values for Amax and Q.LCP…
fit<-nls(photosynthesis~fit.Mitcherlich(irradiance,Amax,LCP,Q.LCP),data=temp
,
start=list(Amax=Astart,Q.LCP=x,LCP=33),control=list(maxiter=100,tol=5e-4),
na.action=na.omit,trace=T,algorithm="port",lower=c(0,0,0))
…
}
Despite trying to estimate good starting...
2004 Jul 16
1
specifying a function in nls
Hello. I am trying to understand the syntax of the nonlinear least
squares function (nls) when the function definition is made outside of
the call. Here is the context.
1. If I specify the following command, it works fine:
> fit2<-nls(
+ A~Am*(1-exp(-alpha*(I-LCP))),data=dat1,
+ start=list(Am=3.6,alpha=0.01,LCP=20))
2. Now, I want to be able to specify the function definition
outside of nls. I do the following:
> Mitscherlich<-function(Am,alpha,I,LCP,...){
Am*(1-exp(-alpha*(I-LCP)))
}
and then:
> fit3<-nls(
+ A~Mitscherlich,...
2006 Nov 13
0
help with syntax of nlme call.
...l estimates of the three parameters.
This self starting function works. I use this to call the nlsList function,
which fits separate nonlinear functions to each species (I am only working
on a 2 level model so far: between and within species):
fit<-nlsList(photosynthesis~photo(irradiance,Am,Q,LCP)|species,
+ data=marouane.data,na.action=na.omit)
This works and I get the three parameter estimates per species.
STEP 3: use nlsList to call nlme. I use the nlsList object (fit) to fit a
variance components model:
fit.nlme<-nlme(fit)
This works (at least it runs without an error message...
2003 Jun 30
1
Fw: VPN setup problem - proxy arp I think
...tion with 129.197.244.12:1127
[pptp1] IFACE: Open event
[pptp1] IPCP: Open event
[pptp1] IPCP: state change Initial --> Starting
[pptp1] IPCP: LayerStart
[pptp1] IPCP: Open event
[pptp1] bundle: OPEN event in state CLOSED
[pptp1] opening link "pptp1"...
[pptp1] link: OPEN event
[pptp1] LCP: Open event
[pptp1] LCP: state change Initial --> Starting
[pptp1] LCP: LayerStart
[pptp1] device: OPEN event in state DOWN
[pptp1] attaching to peer's outgoing call
[pptp1] device is now in state OPENING
[pptp1] device: UP event in state OPENING
[pptp1] device is now in state UP
[pptp1] lin...
2004 Aug 18
1
Help:how to filter PPP LCP packets?
Hi all,
I am using tc htb3.6 on Linux2.4.17,and it works well.I''d like to capture PPP LCP packets and put them into high priority queue.But I don''t know how to use u32 ,iptables or other methods to filter this type packet.
Would anyone please provide suggstion?Thank you very much!
Best Regards
swcims
swcims@163.com
2004-08-18
_______________...
2006 Nov 10
1
help with nlme function
...nction. getInitial() correctly
outputs the initial estimates. I can also use the nlsList with this
function to get the separate nonlinear fits by group. However, I get an
error message when using the nlme function. Here is the relevent code:
fit<-nlsList(photosynthesis~photo(irradiance,Q,Am,LCP)|species/plant/leaf,da
ta=marouane.data,
+ na.action=na.omit)
This works, showing that the function "photo" works as a self-starting
function.
nlme(model=photosynthesis~photo(irradiance,Q,Am,LCP),
+ data=marouane.data,fixed=Q+Am+LCP~1,
+ random=Q+Am+LCP~1|species,na.action=na.omit)
Erro...
2008 Mar 17
1
VPN server and logon to Samba PDC
...guration label not found
>From reading several howto's on Poptop on FreeBSD I ended up with a
partially working solution. I removed the reference to the option file in
/usr/local/etc/pptpd.conf and modified /etc/ppp/ppp.conf like this:
pptp:
set timeout 0
set log phase chat connect lcp ipcp command
set dial
set login
enable mssfixup
set ifaddr 192.168.1.4 192.168.150-192.168.1.155 255.255.255.0
set server /tmp/loop "" 0177
disable pap
# Authenticate against /etc/passwd
enable passwdauth
disable ipv6cp
enable proxy
accept dns...
2003 Feb 04
0
Help with NLME
I am relatively new to NLME, so the solution to the problem I describe here
may be obvious. But I've spent several days trying to get the right syntax
to formulate random effects for this model appropriately. The full model is:
nlme(a ~ a.mitscherlich(a.qe, a.max, lcp, light),
data=light,
fixed = a.max + a.qe + lcp ~ trt,
random = a.max + a.qe + lcp ~ 1 | bench/line,
start = list(fixed=c(17.4305, 0.182444, 0.00928341, -0.00057221,
44.8384, 8.67678)),
method="ML", verbose=T,
control =...
1997 Aug 12
0
R-alpha: attach( <data.frame> , pos = 1) -- does not work. detach(., save=..)
...a.frame)
Otherwise, things are ok (and conform to S's behavior):
###------- Martin Mächler, Aug.12, 1997 (0.50-a3) : -----
data(bees)
search()
attach(bees)
attach(bees[-1,])
search()#ok : ".GlobalEnv" "bees[, -1]" "bees" "library:base"
length(Lcp <- log(colpos)) # 63
assign("Lcp", Lcp, pos = 2)
b1 <- detach()#-- now, b1 is a 'list' instead of a data.frame ..
length(Lcp <- log(colpos)) # 64
bb <- detach()#>>> bb is a data.frame
search()#-- as it was 'at the beginning'
data.class(bb)# "dat...
2000 Sep 08
3
OpenSSH PPP tunneling issue
...ernel 2.2.12) and Redhat 6.9.5
(kernel 2.2.16) machines with the same results.
-----------------------------------------------------------------------------------------
What happens:
We attempt to connect to the OpenSSH server with the following command,
run in a terminal:
/usr/sbin/pppd -detach lcp-echo-failure 600 lcp-echo-interval 600 local
passive pty "ssh -t -l <username> 100.100.100.100 /usr/sbin/pppd file
/etc/ppp/options-<username>"
(The options-username file on the server simply contains an IP address,
such that the client machine is set up with a static IP to...
2007 Oct 11
3
lme4 install trouble
...n)
glmer.c:185: error: (Each undeclared identifier is reported only once
glmer.c:185: error: for each function it appears in.)
glmer.c:185: error: expected ???;??? before ???Lm???
glmer.c:186: error: ???CHM_FR??? undeclared (first use in this function)
glmer.c:186: error: expected ???;??? before ???Lcp???
glmer.c:189: error: ???CHM_DN??? undeclared (first use in this function)
glmer.c:189: error: expected ???;??? before ???Ltb???
glmer.c:195: error: ???Lcp??? undeclared (first use in this function)
glmer.c:196: error: ???Lm??? undeclared (first use in this function)
glmer.c:197: error: ???chb???...
2004 May 31
1
zapras how to
hi!
I'm trying to get zapras working in GSM csd network. Whenever a dialup call is initiated from the mobile to the * gateway the following appears in the log and zapras terminates. Phone gives the error dialup not answered.
==> /var/log/messages <==
pppd[2310]: Plugin zaptel.so loaded.
pppd[2310]: Zaptel Plugin Initialized
pppd[2310]: Using zaptel device 'stdin'
pppd[2310]:
2007 Jul 16
4
No adsl in dom0 - Fedora 7
...NECT
"$@" > /dev/null 2>&1
In /var/messages it says:
Jul 17 00:08:21 gaia pppd[3494]: pppd 2.4.4 started by root, uid 0
Jul 17 00:08:21 gaia pppd[3494]: Using interface ppp0
Jul 17 00:08:21 gaia pppd[3494]: Connect: ppp0 <--> /dev/pts/1
Jul 17 00:08:52 gaia pppd[3494]: LCP: timeout sending Config-Requests
Jul 17 00:08:52 gaia pppd[3494]: Connection terminated.
Jul 17 00:08:52 gaia pppd[3494]: Modem hangup
Jul 17 00:08:56 gaia pppoe[3495]: Timeout waiting for PADO packets
Jul 17 00:08:56 gaia pppd[3494]: Exit.
Jul 17 00:08:56 gaia pppoe-connect: PPPoE connection lost;...
2004 Sep 06
2
Bug#270019: serial/lp rules for logcheck
At the moment I've no host with which to test ppp/lp things on. If you (or
anyone) could provide complete regexes, (each beginning with ^ and ending with
$) I will patch the rules accordingly.
If not, sending the full log lines is a good start.
Thanks!
--
[ Todd J. Troxell ,''`.
Student, Debian GNU/Linux Developer, SysAdmin, Geek :
2005 Jan 15
0
ppp connection only every second time
...ing 'pptp 10.0.0.138' i get a connection only every second time.
Perhaps it is a problem, that i cannot stop pptp but killing it, and therefore pppd has to clean up?
i am using pppd 2.4.3 and pptp 1.5.0
Thanks in advance
/etc/ppp/options
name "***"
noauth
noipdefault
defaultroute
lcp-echo-failure 10
lcp-echo-interval 10
Here are the logs:
/var/log/daemon/notice:
Jan 15 13:28:33 waltz pppd[685]: Using interface ppp0
Jan 15 13:28:36 waltz pppd[685]: CHAP authentication succeeded
Jan 15 13:28:44 waltz pppd[685]: Hangup (SIGHUP)
Jan 15 13:28:44 waltz pppd[685]: Connect time 0.2 mi...
2006 Feb 14
3
Master privileges unavailable on UPS
...FSD SYSLOG+WALL+EXEC
NOTIFYFLAG COMMOK SYSLOG+WALL+EXEC
NOTIFYFLAG COMMBAD SYSLOG+WALL+EXEC
NOTIFYFLAG SHUTDOWN SYSLOG+WALL+EXEC
NOTIFYFLAG REPLBATT SYSLOG+WALL+EXEC
NOTIFYFLAG NOCOMM SYSLOG+WALL+EXEC
RBWARNTIME 43200
NOCOMMWARNTIME 300
FINALDELAY 5
What am I missing?
Thanks!
--
David Benfell, LCP
benfell@parts-unknown.org
---
Resume available at http://www.parts-unknown.org/
2006 Aug 25
0
FreeBSD Security Advisory FreeBSD-SA-06:18.ppp [REVISED]
...8-25 Corrected name of affected driver.
NOTE WELL: The original version of this advisory identified the affected
driver as ppp(4). This is incorrect; the problem occurs in the sppp(4)
driver instead.
I. Background
The sppp(4) driver implements the state machine and the Link Control
Protocol (LCP) of the Point-to-Point Protocol (PPP) and is used in
combination with underlying drivers which provide synchronous
point-to-point connections. In particular, sppp(4) is commonly used
with i4bisppp(4) and ng_sppp(4).
II. Problem Description
While processing Link Control Protocol (LCP) configurat...