Search results

  1. B

    Solved vlan+lagg=mtu 1496. Expected?

    Nice solution, thank you man
  2. B

    IPFW kernel nat problem FreeBSD 8.1 release

    hi Yes I too recently find this "feature" in 8.1. So, solution is 01370 967282663 551608705853 nat tablearg ip from table(22) to any via em0 out 01380 1093220611 1011316253622 nat tablearg ip from any to table(23) via em0 in 01400 2059912550 1562662531102 allow ip from any to any via em0
  3. B

    replace iptables/u32 with pf

    try ng_bpf http://www.opennet.ru/base/net/ng_bpf_build.txt.html
  4. B

    ipfw vs ipf vs pf

    you can do this with commands nslookup google.com | grep Address | grep -v # | awk '{print $2}' ipfw table 1 add <ip_address> ipfw add 1 deny ip from $local_net to "table(1)" but it is wrong way, because at one IP may hosts many site and if you block ip you block all sites, not only...
  5. B

    IPFW and NAT on 7.0 without recompiling kernel?

    I think you must add the rules $IPF 90 divert natd ip from $local_network to any via $if_out $IPF 100 divert natd ip from any to $local_network via $if_out
  6. B

    No menu System-Administration

    No subitems This is screenshot
  7. B

    No menu System-Administration

    Hi all. I installed gnome 2.24 from ports and I can`t find menu Administartion
  8. B

    vlan and staticarp

    Thank you.:) I will try it.
  9. B

    Setting Up Cacti On FreeBSD 7.0

    For monitoring big traffic flow you can make snmp with counter64 and then use this to get counters value cd /usr/ports/net-mgmt/net-snmp && make WITH_MFD_REWRITES=yes install clean /usr/local/bin/snmpget -v2c -c admin -Oqv localhost F-MIB::ifHCInOctets.1 /usr/local/bin/snmpget -v2c -c admin...
  10. B

    host redirection via ipfw

    ipfw add fwd 192.168.0.1,8080 ip from $my_net to me 80
  11. B

    What are you doing with FreeBSD?

    Router to internet with nat.
  12. B

    Mysql 5.x binary-log disable?

    deleting binary logs
  13. B

    Which FTP server software do you use?

    proftpd with nls compiled from sources manualy
  14. B

    dns returning ip address not domain name

    try and post here output nslookup <hostname> nslookup <ip_address_host> dig <domain_name>
  15. B

    Apache VHost organization

    You may also need have a domain name for vhosts.
  16. B

    Web server and it's IPFW configs.

    ipfw add 3 allow ip from <some ip> to me 22 ipfw add 4 deny ip from any to me
  17. B

    vlan and staticarp

    Any suggestion?
  18. B

    UFS Backup

    This my script for dumpfilesystems. It run every day at 4:00 AM. cat /root/dumpfs.sh #!/bin/sh fl=`date "+%d-%m-%Y"` path="/backup/dumpfs" #root file system /sbin/dump -0 -L -f - /dev/ad4s1a > $path/rootfs/dump_ad4s1a_${fl}.img tar cfz $path/rootfs/dump_ad4s1a_${fl}.tar.gz...
  19. B

    vlan and staticarp

    Ну попробую еще раз. Пусть так и будет. Если не будет работать, значит у меня карма плохая :)
  20. B

    vlan and staticarp

    No, it doesn`t work.
Back
Top