internet accounts for users

This is a discussion about internet accounts for users in the Windows Networking category; I want to set up internet accounts for users at my workplace whereby each user will have to log in to use the internet so that l can log network usage inorder to control the network. l use a linux based server with a proxy server and my users are using windows pcs.

Windows Networking 2246 This topic was started by ,


data/avatar/default/avatar34.webp

0 Posts
Location -
Joined 2008-03-31
I want to set up internet accounts for users at my workplace whereby each user will have to log in to use the internet so that l can log network usage inorder to control the network. l use a linux based server with a proxy server and my users are using windows pcs. How do l go about achieving this? pliz help guys

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Jan 8
Created
Oct 22
Last Response
0
Likes
2 minutes
Read Time
User User User
Users

Responses to this topic


data/avatar/default/avatar07.webp

4 Posts
Location -
Joined 2010-04-28
There are two steps to creating a user with the command line tools included with Red Hat Linux:
 
1. Issue the useradd command to create a locked user account.
2. Unlock the account by issuing the passwd command to assign a password and set password aging guidelines.
 
To configure a user account in this manner, follow these steps:
 
1. Create the user account using the useradd command. — At this point the account is created, but locked.
2. Force immediate password expiration — To do this. type the following command:
 
chage -d 0
 
This sets the value for the date the password was last changed to the epoch (January 1, 1970). This value forces immediate password expiration no matter what password aging policy, if any, is in place.
3. Unlock the account — There are two common approaches to this. The administrator can assign an initial password:
 
/usr/sbin/usermod -p "<password>"
 
In the above command, replace <password> with the initial password.
 
Or, the administrator can assign a null password:
 
/usr/sbin/usermod -p ""