Jump to content

wrenhunt

Members
  • Posts

    17
  • Joined

  • Last visited

Contact Methods

  • AIM
    wrenhunt
  • MSN
    wrenhunt@hotmail.com
  • Website URL
    http://www.crotchety-bastard.org
  • ICQ
    0
  • Yahoo
    wrenhunt

Profile Information

  • Location
    Cambridge, MA

wrenhunt's Achievements

New Here

New Here (1/7)

0

Reputation

  1. I got it working! Thanks in large part to Streeter's HOWTO document. I did not originally intend to use DHCP as I wanted a static IP address to punch a hole through the DMZ on the Router <--> PC, (to run web, ftp server, etc.,) so I actually have a mishmash of sorts. DHCP enabled on the box, as a client for the DHCP addresses given out by the Router, but the box itself assigns a 'static' IP in the dhcp range which the DMZ knows about. Hopefully this might help others who might encounter the same scenario. Wren
  2. Thanks for the advice! I think I've tried all that but I think I'm still missing something easy! I tried changing the /etc/sysconfig/network-scripts/ifcfg-eth0 BOOTPROTO parameter from 'Static' to 'dhcp' but when I restarted the network (both via 'service network restart' and a reboot) I was unable to get out to the Internet nor could I use a webbrowser to connect to the router (it's IP addr is 192.168.1.1 and the rest of my LAN is in the range 192.168.1.xxx) In the remote possibility that I had my firewall misconfigured, I used 'drakfirewall' to allow everything and still no dice. I didn't see anything blatantly obvious in the /var/log/messages file. I'm assuming that sense the router is configured to provide DHCP addresses in the correct range that I *do not* want to run a DHCP server anywhere else on the LAN right? Also, should the pppd and pppoe processes be started at runtime as they are now? Thanks again! Wren
  3. What types of networking related messages are you seeing in /var/log/messages? Are you successfully getting a DHCP lease? Make sure you only have 1 DHCP server active (and probably not your laptop!)! Wren
  4. Not sure if you guys can help with this or not, but here goes - I'm running PPPoE on my Linux box with just the PC and the DSL modem and everything works great! Now I want to be able to stick a DSL Router between the DSL modem and my box so that I can hook my laptop up simultaneously. This works fine under Windows XP, but I don't know how to configure it under linux; since the router itself creates the connection (it has the username, password, IP, etc,) I don't know how to get linux to "see" that there's a ppp connection on the router (which is now the default gateway). Any ideas? Wren
  5. Did you inheirit this box or install from CD's, downloaded ISO's, etc.? If you still have original media it should be there. The latest Mandrake 10 ISO I pulled had 2.6.3-4mdksecure #1 SMP which is what I'm running. Perhaps I don't fully understand your question..... Hope that helps! Wren
  6. 1) The commands to manipulate the queues in postfix are: postqueue (e.g., postqueue -p) and postsuper. 2). Check out the /etc/postfix/aliases file. Ensure that you have an actual real live human's account which gets resolved from 'root'. Use 'postfix check' to verify your configuration. 3). I believe imapd runs by default on Mandrake 10? (I may be mistaken in this. If so, just enable it as one of your services. Ensure that port 143 can get through your firewall) 4). Check out Squirrelmail. Easy to install and configure, with plenty of extensions. Wren
  7. wrenhunt

    pci ADSL Modem

    Look at 'adsl-status', 'adsl-start' and 'adsl-stop'. The files you need to configure should be in /etc/ppp. This should get you started until you have more questions! ;-) Wren
  8. Do a Google search and come up with something like this link: http://www.dshield.org/pipermail/intrusion...-May/008044.php Wren
  9. Mozilla's mail will do it. So will Kontact's KMail I believe. Wren
  10. If it's getting bounced to user 'postfix' and you always want it to go to you, setup an alias in the /etc/postfix/aliases file. If you want it bounced to the actual sender of the flubbed message then try setting soft-bounce=yes (I think that's the parameter) in your main.cf file. Wren
  11. I *think* you can bump up the TMOUT value in /etc/sysconfig/msec so a more reasonable value. Wren
  12. You'll need to do some basic setup in the /etc/htttpd/conf/httpd.conf configuration file; the sample setup included should steer you in the right direction. To start/stop Apache manually, you can do that via: /etc/rc.d/init.d/httpd start | stop | status <----only one of these at a time though! Your index page is located at: /var/www/html/index.shtml. Create a file index.html and it will pick this one as your starting page. Wren
  13. I don't know about 9.1, but try: # adsl-setup ; to setup necessary files # adsl-start ; to start it up. If all is successful, you should get a "CONNECT" message, just like with a dialup modem. Otherwise you're in for a bit of troubleshooting. One great way is to use the builtin debugging in the scripts. Set the DEBUG variable to true via: export DEBUG=1 ./adsl-start and it will create a logfile with all sorts of great hints as well as your configuration details. With any luck you'll be able to figure it out from there. Wren
  14. wrenhunt

    Apollon

    This indicates you're having compile problems. Check out which version of the C++ compiler (gcc) you have and then check out the minimum one supported by the folks who wrote the package you're trying to install. Until those errors are resolved you won't be able to install from sources. Alternatively, you could try to install just binaries if you can find pre-built ones for your architecture. Wren
  15. wrenhunt

    Yum problems

    I'm having problems getting yum to work on Mandrake 10.0. I have my /etc/yum.conf configured for a good Mandrake yum repository, but I receive Python (python version 2.3.3) errors for every Yum command I issue, for example: [root@eeyore bose]# yum --version 2.0.1 # yum check-update Gathering header information file(s) from server(s) Server: Red Hat Linux Null base Traceback (most recent call last): File "/usr/bin/yum", line 60, in ? yummain.main(sys.argv[1:]) File "yummain.py", line 183, in main File "clientStuff.py", line 734, in get_package_info_from_servers File "clientStuff.py", line 1103, in grab File "urlgrabber.py", line 228, in retrygrab File "urlgrabber.py", line 306, in urlgrab File "/usr/lib/python2.3/urllib2.py", line 129, in urlopen return _opener.open(url, data) File "/usr/lib/python2.3/urllib2.py", line 326, in open '_open', req) File "/usr/lib/python2.3/urllib2.py", line 306, in _call_chain result = func(*args) File "keepalive.py", line 162, in http_open File "keepalive.py", line 143, in do_open File "/usr/lib/python2.3/httplib.py", line 776, in getresponse method=self._method) TypeError: __init__() got an unexpected keyword argument 'method' [root@eeyore bose]# python -V Python 2.3.3 Is my yum hosed, python, or just me!? :-) Thanks! Wren
×
×
  • Create New...