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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Castor66

    IIS question...

    No settings in IIS - just make sure your intranet site is on it's own IP address. And I mean on your hardware firewall - the generally your default gateway.
  2. Castor66

    IIS question...

    Just make sure that there is no mapping from your firewall to the address the web site is running on in IIS. If the firewall doesn't have an incoming rule for the IP address no external clients will see it.
  3. Castor66

    Terminal Services Error

    I repeat my post: If this is terminal services for administration then you MUST be an administrator on that machine to logon via terminal services. There is no alternative.
  4. Castor66

    Terminal Services Error

    Refer to my post. Try making the user a local administrator on the server and see what happens.
  5. Castor66

    Open Source Alternative's

    Hmm - difficult list. A lot of the Microsoft apps include a lot of stuff in one area. The open-source alternatives tend to be split into individual apps which you need to tie together. You should really split the requirements out with as much granularity as possible. Microsoft SMS - Too many...
  6. Castor66

    Terminal Services Error

    If this is terminal services for administration then you must be an administrator on that machine to logon via terminal services.
  7. Castor66

    2 Port Redirects

    Hi, I did reply to this just after you first posted it but something happened and I lost it. So here goes again! I assume your main problem is that you have one public IP address, correct? If that's not the case then everything below will not apply :-) Ok, when you have only one address you...
  8. Castor66

    e-mail servers

    Jabber supports an e-mail agent" What email agent? Which Jabber server were you thinking of implementing? I took a look at the feature comparison chart for a variety of jabber servers (http://www.jabber.org/admin/jsc/) and SMTP, POP3, IMAP4 or MAPI is not mentioned once. How are you going to...
  9. Castor66

    Cluster Server sharing cpu and ram power help?

    Neat - I hadn't come across openMosix before. Looks pretty cool. I like the Knoppix style ones. Some weekend when I'm on my own in the office I must put one together and see how she runs.
  10. Castor66

    Best Router Application?

    Smoothwall does most of what you require. Have a peruse through the Modifications/Homebrew forum over at http://www.smoothwall.org and see if it fits the bill.
  11. Castor66

    VisualBasic script -and- SNMP

    Have a look here: 15 Seconds
  12. Castor66

    Thin Client effect for the future

    Thin client hardware, like WYSE terminals etc, have there place but I would not be in favour of deploying them. I much prefer to continue to utilise the desktops that are currently in operation but to migrate the applications back off of the desktops to be publishes through Citrix or to deploy a...
  13. Castor66

    Configuring a nic cards speed

    You need to set the ETHTOOL_OPTS in the ifcfg-eth* file in sysconfig. Have a look at: /usr/share/doc/initscripts-*/sysconfig.txt For information on the parameters.
  14. Castor66

    Event 528 as SNMP trap

    You're out of luck on this point, Im afraid. Event to Trap is pretty basic. Any filtering you want to do will need to be done on the SNMP trap receiver end. What exactly do you want to do? Do you want to real-time monitor user logins or do you just want a report on the logins? For reporting you...
  15. Castor66

    companyweb not working. Dir missing files?

    Go to the directory and open notepad. Enter the following text and save it as 'default.htm' <html> <head> <title>Default Page</title> </head> <body> <h1>Hello, World</h1> </body> </html> Now browse to http://localhost/default.htm and you should see 'Hello, World' What happens?
  16. Castor66

    Yet another backup queston

    mysqldump --quick --single-transaction --user=<admin-user> --password=<admin password> --opt > /homt/fullbackup That should do the job for you.
  17. Castor66

    Is Smoothwall a good firewall?

    Smoothie with Advanced Web Proxy (i.e. Squid) and DansGuardian will all run on the same box. Proxy and DG are add-ons to Somoothwall. http://community.smoothwall.org/forum/viewtopic.php?t=11083 http://community.smoothwall.org/forum/viewtopic.php?t=8488
  18. Castor66

    Home network

    I found making Cat5 cables to fiddly but I used to make 10Base2 (CoAx) ends in about 10 seconds or so. Practice makes less imperfect. I got plenty of practice because I had users who used to end up ripping wall boes off and the ends off of cables by shifting their computers without telling me...
  19. Castor66

    iis6 fweb file compression

    Open IIS Management and right click on Web Sites, select Properties. Click on Service and you should have the compression options there. I've never used this as I have a hardware compression system in front of my sites so I'm not sure how good it is.
  20. Castor66

    Dos Command - Date/Time

    Here's one that I use to output today's date as YYMMDD format to a file called today.txt. I use this for having the correct date so I can pickup the correct IIS log file (exYYMMDD.log). @echo off FOR /F "TOKENS=1-3* DELIMS=/" %%A IN ('DATE/T') DO ( SET Year=%%C SET Month=%%B SET Day=%%A )...

Part and Inventory Search

Back
Top