- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: starting netscape automaticaly and send 2 para...
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
05-30-2005 11:23 PM
05-30-2005 11:23 PM
starting netscape automaticaly and send 2 parameter
Hi ,
We are using GUI based authentication on firewall for other network access . In Unix one user user will open Netscape navigator or mozilla , then provide his userid and passwd and submit.
My question is,..
Is there any way to start Netscape navigator and submit user id and passwd for authentication as soon as system started.?
I can invoke netscape in startup. But how can I send 2 parameters to netscape.?
Thanks in advance..
shashi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 12:21 AM
05-31-2005 12:21 AM
Re: starting netscape automaticaly and send 2 parameter
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 12:29 AM
05-31-2005 12:29 AM
Re: starting netscape automaticaly and send 2 parameter
Are you using proxy setup? Ask them to setup transparant proxy for not giivng username and password always ;)
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 12:38 AM
05-31-2005 12:38 AM
Re: starting netscape automaticaly and send 2 parameter
I dunno whether this will work, try this:
you can pass on user name and password as part of URL like this
http://username:password@www.website.com
try and see whether it solves your problem.
also, mozilla has remote command, which allows certain commands to be executed on the running browser window
check this link,
http://www.mozilla.org/unix/remote.html
Hope this helps,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 02:54 AM
05-31-2005 02:54 AM
Re: starting netscape automaticaly and send 2 parameter
How can I do this using command mode?
Is this possible from unix shell programming ?
It is using HTTPS protocol. ( https://
Thanks ,
Shashi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 02:59 AM
05-31-2005 02:59 AM
Re: starting netscape automaticaly and send 2 parameter
http://hpux.ee.ualberta.ca/hppd/hpux/Networking/WWW/curl-7.13.2/
or try Gopi's suggestion to see if that works:
https://USERNAME:PASSWORD@
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 07:31 PM
05-31-2005 07:31 PM
Re: starting netscape automaticaly and send 2 parameter
Unfortunately, this uid and pwd in url method does send the uid and the password over the net, all in one package and in plain text!!! Hence a lot of sites donnot allow this password sending (this could also be a Micro$oft thing...) To overcome this, hence most current browsers have other ways to store and send uid-s and pwd-s. Use these meganisms (cookies, automatic forms and such) and start them from the commandline with `mozilla https://node:port/path/to/page`.
btw: Netscape and Mozilla have a lot of commandline options. Have you peeked at them?
You mention it is for the firewall. In our company, we use a proxy-server which is the only one allowed to pass the firewall and all users should use the proxy settings. On unix boxes, setting $PROXY, $HTTP_PROXY, $FTP_PROXY (or $proxy, $http_proxy and $ftp_proxy) to "http://uid:pwd@proxy:3128/" does suit our need. This is similar to defining the proxy in the browser. You might try this on your site too.