- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: access via X
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
12-04-2005 09:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2005 09:15 PM
12-04-2005 09:15 PM
Re: access via X
Check this doc.
Title: Several options to prevent login to CDE
Document ID: CDEKBRC00006846
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000080093577
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2005 11:35 PM
12-04-2005 11:35 PM
Re: access via X
Still I can login to server, I use log in direct via REFLECION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2005 01:22 AM
12-05-2005 01:22 AM
Re: access via X
what are you trying to limit access to?
Only X sessions allowed to connect?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2005 07:23 PM
12-05-2005 07:23 PM
SolutionTo limit access by host, see /etc/dt/config/Xaccess file.
This file contains a list of host names which are allowed or denied XDMCP connection access to this machine.
example :
hpjg.gvr.com # grant service to this host
!* # denied service to all others remote displays
To limit access by user, see /etc/dt/config/Xstartup file and add limitation like this :
#only root can use DCE
case "$USER" in
root)
: # do nothing
;;
*)
exit 1
;;
esac
###############################
and add file /etc/dt/config/Xsession.d/0001.nologin :
#!/usr/bin/ksh
#only root can use DCE
case "$USER" in
root)
: # do nothing
;;
*)
/usr/dt/bin/dterror.ds \
'Login to CDE denied for this user\n' \
'nologin' \
'OK'
exit 1
;;
esac
###############################
Rgds, Joel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2005 08:55 PM
12-05-2005 08:55 PM
Re: access via X
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2005 08:59 PM
12-05-2005 08:59 PM