Not able to access anything beyond the PPP server.

2012-09-25 Thread sai
Hi All,

I'm Sai Krishna. I have a very fundamental problem. I'm trying to establish
a connection from a client to LAN using PPP, where my machine is the
client. Actually, I was able to ping the PPP server but not able to ping
other machines in that network beyond the PPP server. I have done route
add -net -.-.-.- dev ppp0, once the connection is established. Also, I was
just able to ping to the PPP server and when I tried ssh, the PPP
connection is getting lost. Even the traceroute was unsuccessful. I will be
grateful to you if you help me come over this problem. Eagerly waiting for
your reply.

Thank you,

Regards,
Sai Krishna.


Re: Urgent: Query on dhclient in handling IP conflict

2009-12-26 Thread sathya sai
Hi All,

I COULD FIX this problem with the following solution,

I could distinguish the IP conflict in the network by using following
command in dhclient-script. We need to install “arping” debian package for
this.

*arping -d -I eth0 -c 3 {IP address got from DHCP server}  /dev/null; echo
$?*

*The above command will return “1” if IP conflict doesn’t exist and returns
“0” if IP conflict exists.
*

*And when IP conflict is detected, exit from dhclient-script with positive
exit status. dhclient already has a code to send DHCPDECLINE packet (with
which dhcpserver will assign a new IP to the dhclient client) when
dhclient-script returns  positive value.*

Hope this helps !!
Thanks and regards,
Sathya


On Tue, Dec 22, 2009 at 8:36 PM, Boyd Stephen Smith Jr. 
b...@iguanasuicide.net wrote:

 In a30ddc1c0912210639h491a727ep5860eedd88118...@mail.gmail.com, sathya
 sai
 wrote:
 I had already thought on these possiblities. But the problem here is, we
 dont have control over neither our DHCP server (it can be either Windows
 or
 Linux based servers) nor the client PC which configures static IP (anybody
 in the subnet can configure the IPs on their wish). I hope, this is true
 with the real time deployment scenario.

 Wait, what?  You don't control the server AND you don't control the clients
 AND you want to change how the server and client interact?  I'm sorry, I
 think
 you are asking for the logically impossible.
 --
 Boyd Stephen Smith Jr.   ,= ,-_-. =.
 b...@iguanasuicide.net   ((_/)o o(\_))
 ICQ: 514984 YM/AIM: DaTwinkDaddy `-'(. .)`-'
 http://iguanasuicide.net/\_/



Re: Urgent: Query on dhclient in handling IP conflict

2009-12-22 Thread sathya sai
Hi Stan,

I have already thought about this. But the problem here is, we dont have a
control over neither over our DHCP server nor the system which statically
configures the IP address in our subnet. I hope that, this true even with
the real time deployment scenario.

So, to overcome I will that it would be better if our dhcp client does an
ARP broadcast to detect an IP conflict (as per RFC 2131) and send
DHCPDECLINE if it has found IP conflict.

Could you please let me know your thoughts on this.

Thanks and regards,
Sathya

On Tue, Dec 22, 2009 at 2:20 PM, Stan Hoeppner s...@hardwarefreak.comwrote:

 sathya sai put forth on 12/22/2009 12:26 AM:

  *I could also see that, our debian dhclient presently DOES NOT HAVE AN
  OPTION TO IMPLICITLY SUPPORT THIS.*
 
  But as per RFC 2131,  the client should perform a final check to detect
  the IP conflict and send DHCPDECLINE message. Please find the RFC
  snippet as in below,

 Why aren't you able to create a reservation on the dhcp server?  That is
 the
 very very simple and _correct_ solution to this problem.  This is exactly
 why
 dhcp servers have code to allow reservations.

 --
 Stan


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
  with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org




Urgent: Query on dhclient in handling IP conflict

2009-12-21 Thread sathya sai
Hi All,

This is Sathya, a debian etch user who uses dhclient package to configure
the IP address.

Firstly, I would like to give my heartily thanks to you all for your great
dedicated contribution towards this package. As I am newbie to this mailing
list, I am not aware on where to post this query. So, thought of this mail
directly sending it to you all.

My system has following dhclient packages,

ii  dhcp3-client 3.0.4-13+etch2DHCP
Client
ii  dhcp3-common 3.0.4-13+etch2   Common
files used by all the dhcp3* packages
ii  dhcp3-server 3.0.4-13+etch2   DHCP
server for automatic IP address assignm


Following is the problem which I am facing now,

I have a subnet whose IP addressing is managed by DHCP server. But, one
system in that is intentionally assigned a static IP address. In multiple
occasions, I am now getting IP conflicts in my subnet.

On further analysing this problem, I could undertand that this probelm is
happening because,

1.  As DHCP server is un-aware of this statically configured system; upon
receiving the DHCPREQUEST from a system (which is running dhclient)
from this subnet, the DHCP server gets an unused IP from its IP pools offers
it to that client. *In somecases, dhcp server is giving the same IP address
as that of statically configured system. *

2. As on receiving the IP address, *our dhclient is not performing a final
check on the existence of IP conflict for prior received IP address using
ARP broadcast,* it goes ahead in configuring the system with this IP
address. This results in an IP conflict to exist between these two systems
(with this system and a system with statically configured IP).

*I could also see that, our debian dhclient presently DOES NOT HAVE AN
OPTION TO IMPLICITLY SUPPORT THIS.*

But as per RFC 2131,  the client should perform a final check to detect the
IP conflict and send DHCPDECLINE message. Please find the RFC snippet as in
below,


5. The client receives the DHCPACK message with configuration
 parameters.  *The client SHOULD perform a final check on the
 parameters *(e.g., ARP for allocated network address), and notes the
 duration of the lease specified in the DHCPACK message.  At this
 point, the client is configured.  *If the client detects that the
 address is already in use (e.g., through the use of ARP), the
 client MUST send a DHCPDECLINE message* to the server and restarts
 the configuration process.


And also I could find the following information on dhclient manpage
regarding this,

  Before actually configuring the address, dhclient-script should
somehow
   ARP for it and exit with a nonzero status if it receives a reply.
In
   this case, the client will send a DHCPDECLINE message to the server
and
   acquire a different address.   This may also  be  done  in  the
RENEW,
   REBIND,  or  REBOOT  states, but is not required, and indeed may not
be
   desirable.


As changes to DHCP server is out of our control  we are not sure on what IP
would be statically configured to the system, could you please let me know
your thoughts on how do this we can fix this in dhclient code to
automatically detect duplicate address using ARP broadcast ?

If this support this not there in present dhclient, could you please let me
know by when this the community planning to give a patch for this.

As I am in need of urgent need for fix on this issue, it would be really
helpful if I can get your thoughts on this by earliest.

Thanks a lot in advance for understanding.

Regards,
Sathya


Urgent: Query on dhclient in handling IP conflict

2009-12-21 Thread sathya sai
 Hi All,

This is Sathya, a debian etch user who uses dhclient package to configure
the IP address.

Firstly, I would like to give my heartily thanks to you all for your great
dedicated contribution towards this package. As I am newbie to this mailing
list, I am not aware on where to post this query. So, thought of this mail
directly sending it to you all.

My system has following dhclient packages,

ii  dhcp3-client 3.0.4-13+etch2DHCP
Client
ii  dhcp3-common 3.0.4-13+etch2   Common
files used by all the dhcp3* packages
ii  dhcp3-server 3.0.4-13+etch2   DHCP
server for automatic IP address assignm


Following is the problem which I am facing now,

I have a subnet whose IP addressing is managed by DHCP server. But, one
system in that is intentionally assigned a static IP address. In multiple
occasions, I am now getting IP conflicts in my subnet.

On further analysing this problem, I could undertand that this probelm is
happening because,

1.  As DHCP server is un-aware of this statically configured system; upon
receiving the DHCPREQUEST from a system (which is running dhclient)
from this subnet, the DHCP server gets an unused IP from its IP pools offers
it to that client. *In somecases, dhcp server is giving the same IP address
as that of statically configured system. *

2. As on receiving the IP address, *our dhclient is not performing a final
check on the existence of IP conflict for prior received IP address using
ARP broadcast,* it goes ahead in configuring the system with this IP
address. This results in an IP conflict to exist between these two systems
(with this system and a system with statically configured IP).

*I could also see that, our debian dhclient presently DOES NOT HAVE AN
OPTION TO IMPLICITLY SUPPORT THIS.*

But as per RFC 2131,  the client should perform a final check to detect the
IP conflict and send DHCPDECLINE message. Please find the RFC snippet as in
below,


5. The client receives the DHCPACK message with configuration
 parameters.  *The client SHOULD perform a final check on the
 parameters *(e.g., ARP for allocated network address), and notes the
 duration of the lease specified in the DHCPACK message.  At this
 point, the client is configured.  *If the client detects that the
 address is already in use (e.g., through the use of ARP), the
 client MUST send a DHCPDECLINE message* to the server and restarts
 the configuration process.


And also I could find the following information on dhclient manpage
regarding this,

  Before actually configuring the address, dhclient-script should
somehow
   ARP for it and exit with a nonzero status if it receives a reply.
In
   this case, the client will send a DHCPDECLINE message to the server
and
   acquire a different address.   This may also  be  done  in  the
RENEW,
   REBIND,  or  REBOOT  states, but is not required, and indeed may not
be
   desirable.


As changes to DHCP server is out of our control  we are not sure on what IP
would be statically configured to the system, could you please let me know
your thoughts on how do this we can fix this in dhclient code to
automatically detect duplicate address using ARP broadcast ?

If this support this not there in present dhclient, could you please let me
know by when this the community planning to give a patch for this.

As I am in need of urgent need for fix on this issue, it would be really
helpful if I can get your thoughts on this by earliest.

Thanks a lot in advance for understanding.

Regards,
Sathya


[no subject]

2009-06-21 Thread sai ram
Dear Friends! 
I use Ubuntu Dapper Drake (on x86 pc) and wanted to install isomaster 
software package about which I read in a linux magazine. As this package was 
unavailable in my synaptic package manager with Ubuntu repositories, I 
downloaded the package from Debian website.
While attempting the installation, I encountered dependency errors. I believe 
these errors can be overcome by adding appropriate Debian repositories to the 
etc/apt/sources.list file of my Ubuntu OS.

Please 

(1) clarify if I can have both Ubuntu repositories and debian repositories 
enabled at the same time ?
(2) Do I need any key to access the Debian repositories ?
(3) give me the exact debian package source location lines, that I need to add 
to my etc/sources.list file, so I can henceforth install packages from Debian 
repositories without any dependency errors.


Following are the contents of my present /etc/apt/sources.list file (if it may 
be of any use in suggesting a solution to my problem):

-
deb cdrom:[Ubuntu 6.06 _Dapper Drake_ - Release i386 (20060531.2)]/ dapper main 
restricted

deb http://in.archive.ubuntu.com/ubuntu/ dapper main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper main restricted

deb http://in.archive.ubuntu.com/ubuntu/ dapper-updates main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper-updates main restricted

deb http://in.archive.ubuntu.com/ubuntu/ dapper universe
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper universe

deb http://in.archive.ubuntu.com/ubuntu/ dapper-backports main restricted 
universe multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper-backports main restricted 
universe multiverse

deb http://security.ubuntu.com/ubuntu dapper-security main restricted
# deb-src http://security.ubuntu.com/ubuntu dapper-security main restricted
deb http://security.ubuntu.com/ubuntu dapper-security universe
# deb-src http://security.ubuntu.com/ubuntu dapper-security universe

## ##

## How to install Automatix on Ubuntu, Kubuntu, and Xubuntu 
## gksudo kwrite /etc/apt/sources.list

## Uncomment the following lines 
deb http://in.archive.ubuntu.com/ubuntu dapper main
# deb-src http://in.archive.ubuntu.com/ubuntu dapper main

## If you use Ubuntu or Xubuntu Dapper, add the following line to the end of 
the file. 
# deb http://www.getautomatix.com/apt dapper main

## If you use Kubuntu, add the following line to the end of the file. 
# deb http://www.getautomatix.com/apt kubuntu main

#AUTOMATIX REPOS START

deb http://archive.canonical.com/ubuntu dapper-commercial main

deb http://archive.ubuntu.com/ubuntu dapper-backports main restricted universe 
multiverse

deb http://archive.ubuntu.com/ubuntu dapper-updates universe multiverse

deb http://archive.ubuntu.com/ubuntu dapper-security main restricted universe 
multiverse

deb http://archive.ubuntu.com/ubuntu dapper universe multiverse
#AUTOMATIX REPOS END

---

thanks,
sairam






DEBIAN REPOSITORIES FOR UBUNTU DAPPER ?

2009-06-21 Thread sai ram
Dear Friends! 
I use Ubuntu Dapper Drake (on x86 pc) and wanted to install isomaster 
software package about which I read in a linux magazine. As this package was 
unavailable in my synaptic package manager with Ubuntu repositories, I 
downloaded the package from Debian website.
While attempting the installation, I encountered dependency errors. I believe 
these errors can be overcome by adding appropriate Debian repositories to the 
etc/apt/sources.list file of my Ubuntu OS.

Please 

(1) clarify if I can have both Ubuntu repositories and debian repositories 
enabled at the same time ?
(2) Do I need any key to access the Debian repositories ?
(3) give me the exact debian package source location lines, that I need to add 
to my etc/sources.list file, so I can henceforth install packages from Debian 
repositories without any dependency errors.


Following are the contents of my present /etc/apt/sources.list file (if it may 
be of any use in suggesting a solution to my problem):

-
deb cdrom:[Ubuntu 6.06 _Dapper Drake_ - Release i386 (20060531.2)]/ dapper main 
restricted

deb http://in.archive.ubuntu.com/ubuntu/ dapper main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper main restricted

deb http://in.archive.ubuntu.com/ubuntu/ dapper-updates main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper-updates main restricted

deb http://in.archive.ubuntu.com/ubuntu/ dapper universe
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper universe

deb http://in.archive.ubuntu.com/ubuntu/ dapper-backports main restricted 
universe multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ dapper-backports main restricted 
universe multiverse

deb http://security.ubuntu.com/ubuntu dapper-security main restricted
# deb-src http://security.ubuntu.com/ubuntu dapper-security main restricted
deb http://security.ubuntu.com/ubuntu dapper-security universe
# deb-src http://security.ubuntu.com/ubuntu dapper-security universe

## ##

## How to install Automatix on Ubuntu, Kubuntu, and Xubuntu 
## gksudo kwrite /etc/apt/sources.list

## Uncomment the following lines 
deb http://in.archive.ubuntu.com/ubuntu dapper main
# deb-src http://in.archive.ubuntu.com/ubuntu dapper main

## If you use Ubuntu or Xubuntu Dapper, add the following line to the end of 
the file. 
# deb http://www.getautomatix.com/apt dapper main

## If you use Kubuntu, add the following line to the end of the file. 
# deb http://www.getautomatix.com/apt kubuntu main

#AUTOMATIX REPOS START

deb http://archive.canonical.com/ubuntu dapper-commercial main

deb http://archive.ubuntu.com/ubuntu dapper-backports main restricted universe 
multiverse

deb http://archive.ubuntu.com/ubuntu dapper-updates universe multiverse

deb http://archive.ubuntu.com/ubuntu dapper-security main restricted universe 
multiverse

deb http://archive.ubuntu.com/ubuntu dapper universe multiverse
#AUTOMATIX REPOS END

---

thanks,
sairam






Re: free software version of MATLAB 7.0

2006-06-08 Thread Sai Mg Mg Zaw
 hello 
manish.ieee
  I'ld like to get matlab version 7.o.
  my email address is [EMAIL PROTECTED] . please send me it as 
possible as you can.   
  with Thanks
  [EMAIL PROTECTED] 

-- 
___
Get your free email from http://www.lissaexplains.com