network

Any open source NAC "Network Access Control" impemented in C??

Heyy Everyone, I was just wondering if anyone knows any open source NAC system implemented in C/C++/Java/C# ?? I just came across Packetfence and Netreg but both of them are implemented in Perl and since I'm a novice to Perl hence unable to percept the code. I would highly appreciate your positive inputs. ...

DOS .bat script to copy files to a secure network location, how to supply credentials?

The environment is Windows Web Server 2008, and I'm just trying to copy a folder full of files to a network location (a managed backup network folder). Here is my .bat file, running in the folder with my .bat files: copy *.bak \\networklocation\*.bak pause however \\networklocation requires username x and password y, so running the sc...

Choosing multicast network interface in Python.

I have a server with two separate Ethernet connections. When I bind a socket in python it defaults to one of the two networks. How do I pull a multicast stream from the second network in Python? I have tried calling bind using the server's IP address on the second network, but that hasn't worked. ...

Images in AX forms

In Dynamics AX, we use a large number of images and icons for various purposes in our custom forms. We're currently having to individually install image/icon packs on every client machine in order for everything to work. Is there a way (or best practice) for handling images and icons in Dynamics so an install on every single client is ...

Network availability to make a call

In my application I have written code to make a call to helpline just by clicking on button. When I copy this application to my Android device, if the network is not available it exits the application. I want to display a error message rather than exiting. One more issue,I have written code to add a helpline number to contactbook when t...

Distributed, error-handling, copying of TB's of data

We have a box that has terabytes of data (10-20TB) each day, where each file on the drive is anywhere from megabytes to gigabytes. We want to send all these files to a set of 'pizza boxes', where they will consume and process the files. I can't seem to find anything that is built to handle this amount of data besides distcp (hadoop). R...

Check if a file is accessable on a shared network drive

Hi, I have a program that does different things my questions is related to access files in a network mapped drive or a shared folder the program can run a file msi/exe from the network (network mapped drive or a shared folder) the program can copy file from the network (network mapped drive or a shared folder) how I can check if the f...

1 Linux PC with two network cards cannot produce network traffic for test system

These questions relate to the basics of networking, but I have not found an answer yet! Question 1: Can a 100Mbps switch handle 2 simultaneous TCP streams running at 100Mbps? To illustrate this if you have 4 PC's on 1 switch (100Mbps with no other connections) and you had two separate streams, what speed would they reach? Would one stre...

Problem checking for network connectivity

I have an IntentService which makes some web service calls. Before making these calls I check to make sure the device has network connectivity. I am doing so like this: private boolean isOnline() { ConnectivityManager connec = (ConnectivityManager)getSystemService(getApplicationContext().CONNECTIVITY_SERVICE); return connec.getN...

How do I connect to a local network externally in WIndows 7?

I want to connect to my school's network so I can access all the network drives and some other things. Please help what do I do? I have regualr access everyday to the computers. ...

Question about default route

Hi all: I learn this reference from MSDN.The pic below is a network topology which i am going to use. And quotation from the reference: Web Client: The Web client is connected to the 10.0.13.0/24 subnet and uses the IPv4 address of 10.0.13.110/24, the default gateway at 10.0.13.1, and the DNS server at 10.0.47.91. The We...

How can I display posts from the other sites in a WordPress multisite setup?

I have a small network of sites setup with WordPress 3.0's multisite feature. I would like to create another site which pulls certain posts from the various other sites to display. This new 'hub' site would seem like its own separate site to the user (with domain mapping), but its content is coming from the posts from the other sites. H...

What programming languages are required for a career in network security?

I have learned most of c++ already and now some are saying that I should learn c and assembly for network security. Is it necessary to learn really low-level languages? I searched all over with no specific answers to this question. thanks ...

POST vs GET methods - at the network level, which is more impacted by latency?

Is there any difference in network communication for HTTP GET and POST requests? With GET, I understand that the entire request is sent in one go. With POST, I think the initial request is sent, and then a second request is sent which sends all the parameters. For example, assume that the latency between server and client is 500ms. Wha...

How to configure ZTE ZXVE10 W300 router as a proxy server

Hello, I need to configure my ZTE ZVE10 W300 router as a proxy server. I need the users connect to router (with real ip) and use internet through it. Is there any way to do it ? I dont want to setup web proxy server or something else behind the router, but want to do that exactly on the router. Regards, Levon ...

iOS device goes idle, network stops. How do i get notified about entering the 'idle' state?

My app has a screen where it is constantly polling a server for information. When the user does not interact with the app it goes idle, the screen goes dim and then black. In the background, the app still tries to poll to service, but gets -1009 error codes from NSURLConnection. (-1009 == NSURLErrorNotConnectedToInternet) My idea is to...

How can I hook mapped drive (Z: -> \\myserver\share) turn disconnected?

Hi I have several network drives connected to my PC. How can my application (VC++/Win32) on this PC, hook or get event when user disconnect drive? (Right click menu, Disconnect item). Thank a lot, Dmitry ...

How can I simulate that I plugged an ethernet cable between 2 virtual machines with virtual box?

How can I simulate that I plugged an ethernet cable between 2 virtual machines with VirtualBox 3.2.10? Like that: 10.1.0.1 o===========o 10.1.0.2 thank you in advance Daniel ...

Is this a good concept for sending serialized objects over Network?

I have a client and a server I want to send objects from client to server The objects must be send bundled together in a "big packet" containing many objects The objects could be in a random order The number of objects is not fixed There could be objects in the packet which are unknown to the server (so he needs to dump them) I haven'...

detect connection type for iphone on website?

hello there - is it possible with javascript, PHP (or anything!) to see if the iphone is using 3g or wifi from a website? We want to load low-res content if its 3G you see, I found SCNetworkReachabilityFlags but that is just for apps... Any pointers would be great! Dan ...