Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

deny network access

Status
Not open for further replies.

mikeEd

Programmer
Nov 26, 2001
160
0
0
GB
If I wanted to prevent a particular application from accessing the network, how would I do it? I'm assuming that, although it can be achieved with iptables, attempting to prevent access at the firewall level is not the best way to do it. Would the best way be to run the program as a user who is denied access to the network?
 
I found this while googling for some kind of info for your question. Looks interesting. I've bookmarked it for a rainy day :)
--
JR
 
Thanks, I had no luck with Google.
Although that seems a little like overkill for my (hypothetical) problem. Is there no simple way to deny a user access to the network interface?
 
Yes, that sounds like some overkill if it's only one application. You could create a new group like "netuser" with:
Code:
groupadd netuser
Next:
Code:
chgrp netuser <your application binary>
Then:
Code:
chmod 550 <your application binary>
That way only root and members of &quot;netuser&quot; group can run the application. To add memebers to &quot;netuser&quot;, there's probably an easy way/front-end helper application in your distribution. I just use &quot;vigr&quot; and edit the group file using vi (just add the user name to the end of the line that starts with the group name). --
JR
 
Thanks, but I mean I want to deny users access to the network interface (e.g. eth0), not the application. Is there not somewhere where I can deny/grant access to the network for a specific user?
 
There indeed is just that, but the first thing you asked and the last thing you asked are totally different.

just do the same thing to the NIC as you would the application, grant the eth0's driver access to only those who you want.... (after all everything is a file in Unix/Linux)
 
Do you mean the ethernet device under /dev, which doesn't exist?

As far as I can see that's exactly what I asked in the first place; i.e. how can I deny network access to a single user, and thus deny network access to a specific application by running it in the context of that user?

Or is there any other way to achieve what I originally asked about? I'm open to suggestions.
 
The first time you asked about keeping an application from the net, not user... I wonder why it's not there, I just looked and it's not there on my system either, which is odd because before the upgrade it was there... hmmm.. you could make it root only fairly easily by not having not active at boot, and then not allowing other users to activate it.
 
Well I actually asked:

&quot;Would the best way be to run the program as a user who is denied access to the network?&quot;

Thus if I could deny network access for a user, I could deny it for a program. Unfortunately your suggestion, therefore, isn't feasible if I want to keep the connection up but restrict who can use it.

I'm amazed that there seems to be no easy answer to this question.
 
You can restrict application access with any of these facilities:
pam
tcpwrappers/xinetd
iptables

There are others, but these are the standard tools
available.
I strongly suggest you research pam before working with
it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top