Search results

  1. M

    [IPFW] Firewall not blocking incoming traffic

    It's hard to say since you didn't specify where you were testing it from. Are you sure you weren't hitting it through tun0 which you allowed? If it's allowed and not showing up as logged, you should be able to see which rule is allowing traffic. ipfw zero ipfw show Keep hitting it a few times...
  2. M

    Upgrade from FreeBSD 9.2-PRERELEASE #0 r254629 to 9.2-RELEASE from source failed

    While not a solution for your problem, if you don't require clang, put WITHOUT_CLANG=1 in /etc/src.conf and see if that sidesteps the problem. Also make sure /usr/obj is empty before buildworld starts.
  3. M

    mini-ITX recommendation

    The first board has an intel chipset for networking. I won't go so far as to say avoid realtek, but intel is far better for networking hands down.
  4. M

    Firewall - NSA safe?

    I'm not trusting closed source security products like a firewall. Could the NSA backdoor BSD/Linux? Yes. But then what are your alternatives? Cisco? Huawei? At least with open source firewalls there are enough eyes going over the code that a backdoor attack is going to require a high level of...
  5. M

    Note-taking application for CLI?

    The folding feature in Vim might be worth looking into.
  6. M

    Unable to compile the kernel

    If you're just trying to get the source directory, you might find it easier to grab the source manually: ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/9.1-RELEASE/ The file you want is src.txz. This is the release version however, and you may want to get the latest patches. I can't...
  7. M

    Windows Server 2012 and FreeBSD features?

    While it's true Microsoft is aggressively developing their server OS, this doesn't mean their decisions are infallible. The metro interface has pretty much proven that Microsoft is quite capable of making completely idiotic decisions. Even after the overwhelmingly negative feedback before...
  8. M

    ifconfig errors in rc.conf

    I've never put "up" in a bridge configuration (it's always up), so maybe try taking that out. You have firewall_type set wrong. It should be set to open, closed, client, or simple. Or perhaps you wanted to set firewall_script instead?
  9. M

    FreeBSD on old computers

    Your problems may not be with Linux, so much as with the stuff running on top of Linux. Both FreeBSD and Linux may be able to meet your requirements, but you'll have to make concessions on how fancy the environment looks. You'll probably want some sort of generic looking "start button" task bar...
  10. M

    Problem routing

    From a machine behind the FreeBSD gateway, try to ping 192.168.2.1 and that should tell you if it's passing through. I'm not sure if that's all of your rc.conf, but I did notice you don't have a DNS server enabled, but DHCP is handing out your server address for DNS resolution. You will...
  11. M

    IPFW and nat problem

    This might be a problem if the NAT module hasn't been loaded when ipfw is initializing. Try setting ipdivert_load="YES" in /boot/loader.conf
  12. M

    Someone's bad DNS is pointing to my IP and overloading my apache server

    Yeah, you'll have to choose either blocking them on the network level, or returning errors but can't do both. (alternative idea, use mod rewrite to point to a script that does less intensive logging). This does sound like someone misconfigured something, so redirecting to a porn image is...
  13. M

    Someone's bad DNS is pointing to my IP and overloading my apache server

    A "solution" depends on what you think is acceptable for server load. Since you're not sure if it's malicious or not, I'd still give the IP address change a shot if that's an option. Then at least you'll know if it's just an oddball mistake or not. If you're trying block traffic before apache...
  14. M

    Apache and mail server question.

    Your question is a little too broad to answer properly, especially the term "mail server" as FreeBSD supports many that do both outgoing and incoming. I'm not exactly sure what you mean by encryption method for passwords, but I'm assuming you mean how the password file is stored on the...
  15. M

    nginx - htpasswd

    That looks correct to me. I'd try to return a 403 in that block and confirm that the location directive is catching it properly. Also check the file permissions on .htpasswd-adm. The nginx worker process needs permission to read this file. I'm not sure if that directory is a webroot or where...
  16. M

    syslogd syntax for redirecting to sub-folders

    Quite good thank you.
  17. M

    nginx - htpasswd

    Are you having problems password protecting directories, or doing it the way Apache does it? It's built into the Nginx http module, you just need to add an auth_basic and auth_basic_user_file to a location directive. If you mean, can you have .htpasswd files strewn all over the system that are...
  18. M

    syslogd syntax for redirecting to sub-folders

    I think you're misunderstanding how syslog works, you may want to reread the manual. Facilities and priorities are explicitly fixed within the standard ones defined by the operating system. If you want to log things prefixed by "pf" (and by prefix I mean by program name), then you need to do it...
  19. M

    Nameservers.

    The dig command should allow you to see if things are resolving. If they're not then make sure /etc/resolv.conf is pointing at a dns server which is working.
  20. M

    Problem connecting to server using external address

    Due to the nature of network address translation, you have to use the internal address to access internal machines. What exactly are you trying to do? (related: http://forums.freebsd.org/showthread.php?t=29997)
Back
Top