472,954 Members | 1,620 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,954 software developers and data experts.

Two ethernet cards/networks (still)

There is a lot to stuff that seems to skirt around this issue (most of which
has to do with finding your IP address), but I can't find anything that
explains how to write a client that (in my case) needs to collect some
information from some equipment on a private network/Ethernet card, then
transmit that info on the other Ethernet card/"outside" network to another
program (which will put it into a db).

"binding to a specific address is almost never used for a client", sez
Foundations of Python Network Programming, but is that how it's done?? Each
card has a fixed IP address. It's on Windows at this time if that makes any
difference.

Thanks!

Bob
Sep 7 '06 #1
3 1901
Bob Greschke wrote:
There is a lot to stuff that seems to skirt around this issue (most of which
has to do with finding your IP address), but I can't find anything that
explains how to write a client that (in my case) needs to collect some
information from some equipment on a private network/Ethernet card, then
transmit that info on the other Ethernet card/"outside" network to another
program (which will put it into a db).

"binding to a specific address is almost never used for a client", sez
Foundations of Python Network Programming, but is that how it's done?? Each
card has a fixed IP address. It's on Windows at this time if that makes any
difference.
The reason that "binding to a specific address is almost never used for
a client" is because it's the server destination address that the
network layer will use to determine which interface is used to
communicate with a specific server host.

Suppose your network setup looks like this:
+-------------------+------------------------+ Network A
|
|
|
| 192.168.12.34/24
|
+--------+--------+
| |
| |
| YOUR HOST |
| |
| |
+--------+--------+
|
| 201.46.34.22/24
|
|
|
+-------------------+----------+-------------+ Network B
|
+
+--------+--------+
| router |
| to internet |
+-----------------+

If your client program tries to communicate with, say, 192.168.12.18
then by the IP network layer will automatically select network A as the
medium, since the destination is local to that network. If you then want
to communicate the results to 201.46.34.118 then network B will be used,
again because the destination is local to that network (its first 24
bits are the same as the first 24 bits of the destination).

In this case the router on network B will almost certainly be the
default route for the host, as it's the way to everywhere else.

This isn't really Python-related, so I hope it answers your question!

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Sep 7 '06 #2

"Steve Holden" <st***@holdenweb.comwrote in message
news:ma*************************************@pytho n.org...
Bob Greschke wrote:
The reason that "binding to a specific address is almost never used for a
client" is because it's the server destination address that the network
layer will use to determine which interface is used to communicate with a
specific server host.

Suppose your network setup looks like this:
+-------------------+------------------------+ Network A
|
|
|
| 192.168.12.34/24
|
+--------+--------+
| |
| |
| YOUR HOST |
| |
| |
+--------+--------+
|
| 201.46.34.22/24
|
|
|
+-------------------+----------+-------------+ Network B
|
+
+--------+--------+
| router |
| to internet |
+-----------------+

If your client program tries to communicate with, say, 192.168.12.18 then
by the IP network layer will automatically select network A as the medium,
since the destination is local to that network. If you then want to
communicate the results to 201.46.34.118 then network B will be used,
again because the destination is local to that network (its first 24 bits
are the same as the first 24 bits of the destination).

In this case the router on network B will almost certainly be the default
route for the host, as it's the way to everywhere else.

This isn't really Python-related, so I hope it answers your question!

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden
Nice explanation! Thanks! You mean I don't have to do anything special??
That sounds suspiciously easy. :)

To muddy the water a little the equipment I want to get info from (some
seismic digitizing/recording equipment) comes back to us from the field with
the IP addresses set to whatever that last user needed. What we do now is
put the unit(s) on the bench, connect them to the private network and use a
broadcast address (like 255.255.255.255) and a specific port number to query
and see who is connected. Then we (a program) can get in (login, basically)
and reset the all of the IPs to the same subnet to proceed with checkout,
calibration, etc. We have to disconnect from (or disable the card for) the
outside network when we do this discovery or else the program discovers all
of these instruments that we have running in the building (monitoring a
seismic pier, in people's offices, etc.). I'm guessing here we will still
need to do this? It's not a biggie, but finding a way to not have to do
this was what started this whole thing. Once the program knows which
instruments it found on the private network it doesn't matter. It will only
work on those ones.

Thanks!

Bob
Sep 10 '06 #3
Bob Greschke wrote:
"Steve Holden" <st***@holdenweb.comwrote in message
news:ma*************************************@pytho n.org...
>>Bob Greschke wrote:
The reason that "binding to a specific address is almost never used for a
client" is because it's the server destination address that the network
layer will use to determine which interface is used to communicate with a
specific server host.

Suppose your network setup looks like this:
+-------------------+------------------------+ Network A
|
|
|
| 192.168.12.34/24
|
+--------+--------+
| |
| |
| YOUR HOST |
| |
| |
+--------+--------+
|
| 201.46.34.22/24
|
|
|
+-------------------+----------+-------------+ Network B
|
+
+--------+--------+
| router |
| to internet |
+-----------------+

If your client program tries to communicate with, say, 192.168.12.18 then
by the IP network layer will automatically select network A as the medium,
since the destination is local to that network. If you then want to
communicate the results to 201.46.34.118 then network B will be used,
again because the destination is local to that network (its first 24 bits
are the same as the first 24 bits of the destination).

In this case the router on network B will almost certainly be the default
route for the host, as it's the way to everywhere else.

This isn't really Python-related, so I hope it answers your question!

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden


Nice explanation! Thanks! You mean I don't have to do anything special??
That sounds suspiciously easy. :)

To muddy the water a little the equipment I want to get info from (some
seismic digitizing/recording equipment) comes back to us from the field with
the IP addresses set to whatever that last user needed. What we do now is
put the unit(s) on the bench, connect them to the private network and use a
broadcast address (like 255.255.255.255) and a specific port number to query
and see who is connected. Then we (a program) can get in (login, basically)
and reset the all of the IPs to the same subnet to proceed with checkout,
calibration, etc. We have to disconnect from (or disable the card for) the
outside network when we do this discovery or else the program discovers all
of these instruments that we have running in the building (monitoring a
seismic pier, in people's offices, etc.). I'm guessing here we will still
need to do this? It's not a biggie, but finding a way to not have to do
this was what started this whole thing. Once the program knows which
instruments it found on the private network it doesn't matter. It will only
work on those ones.
Ah, so you want to do a limited broadcast over a single interface (the
one for the private network) to avoid having to disable the other
interface? That's a different kettle of fish.

I suspect you could do it by binding the local socket to a single
address, but I'd need to play around to get it right. Maybe someone else
has already done this?

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Sep 11 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Chaser | last post by:
Hi folks, Just wondering if anyone knows where I can find modules for NI-488.2 GPIB and for a generic ethercard? Thanks.
1
by: LkR299 | last post by:
I have a project with a PC and a microcontroller. I am trying to create a program on the PC to communicate with the microcontroller through ethernet ports. I am still deciding which language,...
3
by: Ophir | last post by:
Hi all ! Are there any windows API to get information about ethernet cards installed on the computer? Tried to search msdn but came out short. I need to get all present networking cards...
1
by: Ray Mitchell | last post by:
Hello, If I have several ethernet adaptors with different IP addresses on my system and do the following (or something similar to an arbitrary non-Internet IP address), how do I know or control...
8
by: Edison Abarca Tapia | last post by:
Hi: I need change MAC(nic) Address. I help me pleaseeeee... thanks, Edison
1
by: gnanapoongothai | last post by:
Hi I am into the project of processing data from ethernet cards at a fast rate and send the process data out. Byt i am struck with abt details of hoe to access the data from ethernet. i know NIC...
11
by: gustavo.samour | last post by:
Hi, I am writing a very basic raw ethernet sniffer based on what I found in Andreas Schaufler's raw ethernet article: http://aschauf.landshut.org/fh/linux/udp_vs_raw/ch01s03.html I'm trying...
1
by: kavok | last post by:
I am writing a software that needs to sniff packets in the network (raw ethernet) and also, with another thread send regular UDP packets with the common socket API's. However, when the RAW...
0
by: Guy007 | last post by:
I need to draw large networks (Finite state automata, with nodes connected by directed edges). I am searching for some DLL or class that will help me draw these networks in c#. So far, I have...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
1
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.