- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- User group login
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 05:24 PM
11-27-2001 05:24 PM
User group login
May i know is possible to me create an account for user by group? that mean the users with same group will detect from their ip address.. so only verified user on that group can login using the group login id.
Thanx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 06:07 PM
11-27-2001 06:07 PM
Re: User group login
I am fairly sure that this is not possible,
but have a look at this link which you
can restrict the number of users belonging
to certain groups. This might help you.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xb16b972194d6d5118ff40090279cd0f9,00.html
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 06:49 PM
11-27-2001 06:49 PM
Re: User group login
Selamat Berbuka Puasa!
I'm not too sure what exactly you're looking for, but if you want a particular user to login only from his/her machine and nowhere else, you can add this to the user's login script (.profile/.login):
thisip=`who -T | grep $(whoami) | tr -s " " | cut -d" " -f9`
allowedip="555.55.555.55"
if [ $thisip = $allowedip ]
then
: # OK, the user can continue
else
echo Sorry, you are only permitted to login from $allowedip
exit
fi

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 07:16 PM
11-27-2001 07:16 PM
Re: User group login
Do you want to limit login as a specific user to only sessions from a group of IP addresses?
You could put a edit in that user's .profile but the preferred place would be /etc/profile. And if it's a csh account, you'd put it in /etc/csh.login.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2001 06:21 PM
11-28-2001 06:21 PM
Re: User group login
i'll try to run yr advise :)