• Forward multiple public ip's to another pfsense box?

    4
    0 Votes
    4 Posts
    1k Views
    D
    my upstream provider uses a cisco gateway, when i asked them to show me how they routed the #.#.236.0/24 subnet to me, i was dumbfounded with how simple he made it look… my static ip assigned to wan is #.#.232.12/24 (pfsense box) from his CLi, he typed in a single command telling the cisco gateway to route any requests to 236.0/24 to be routed to 232.12/24, the pfsense box was then configured with virtual ip / proxy arp, and from there i would assign 236.0/24 ip to lan hosts.... so, at this point, i have broken the /24 into smaller subnets (/30,/29,/25) creating new vlan interfaces, and configuring each vlan interface with /29 or /30... disabled dhcp within that vlan giving the host control over ip assignment to me this is a waste of ip's being i loose two ip's to subnet id/broadcast just to provide a /29 or /30 to a single host.... is pfsense capable of doing what my upstream provider did? per say, route requests to #.#.236.10-16/24 to their wan ip like he did thru cli?
  • Carp and IPSec VPN problem

    1
    0 Votes
    1 Posts
    738 Views
    No one has replied
  • VIP Bandwidth usage

    1
    0 Votes
    1 Posts
    723 Views
    No one has replied
  • Gateway drop out when assigning more than one VIP

    1
    0 Votes
    1 Posts
    685 Views
    No one has replied
  • Balancing users over more than one pfsense box for lan party

    2
    0 Votes
    2 Posts
    946 Views
    J
    Pushing 1Gbit/s through FW+NAT isn't very hard.  A modern Celeron or i3 will have no issues. What exactly are the "network issues" that you're experiencing?
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • CARP on LAN + WIFI issue (using ALIX 2D13)

    2
    0 Votes
    2 Posts
    965 Views
    D
    I found a workaround which is not ideal but allows me to move on. I noticed that in fact i couldn't ping the LAN VIP if i was connected in WiFi to the active CARP appliance. So basically instead of having two active hotspots, I just had to make sure the hotspot was disabled on the active CARP appliance. To do so here is what I did: 1 - Modify /etc/devd.conf to point to custom rc.carp scripts ... # CARP notify hooks. This will call carpup/carpdown with the # interface (carp0, carp1) as the first parameter. notify 100 {     match "system"          "IFNET";     match "type"            "LINK_UP";     match "subsystem"          "[a-zA-Z0-9_]+_vip[0-9]+";     action "/etc/rc.carpmaster.custom $subsystem"; }; notify 100 {     match "system"          "IFNET";     match "type"            "LINK_DOWN";     match "subsystem"          "[a-zA-Z0-9_]+_vip[0-9]+";     action "/etc/rc.carpbackup.custom $subsystem"; }; ... 2 - Create /etc/rc.carpmaster.custom #!/bin/sh /etc/rc.carpmaster $1 ifconfig ath0_wlan0 down /usr/local/sbin/pfSsh.php playback svc restart racoon 3 - Create /etc/rc.carpbackup.custom #!/bin/sh /etc/rc.carpbackup $1 ifconfig ath0_wlan0 up So basically, when an appliance becomes master: It runs the usual carp scripts It disables the hotspot It restarts racoon (to make sure IPSEC connection are restarted) when an appliance becomes master: It runs the usual carp scripts It enables the hotspot Having the same SSID and both appliance not too far from one another makes it almost transparent to end-users (about 30 seconds service interruption in case of a CARP failover).
  • CARP Issues with ISP

    2
    0 Votes
    2 Posts
    1k Views
    H
    AFTER your box is up and running (not so well as you write), call the ISP and ask them to clear the cable modem's ARP table.  If it starts working (for a little while), then you are seeing the same thing I'm seeing which only started within the last few weeks. Somehow, the router in the cable modem puts the interface's actual ip in its ARP table with the first VIP mac address.  Then, it puts the VIP's mac address in it's table for the pf router's actual interface card ip. The result is no traffic gets through.  Traffic addressed on the link to the vip has the interface address and so it gets dropped.  Traffic addressed to the VIP on the link has the interface's IP and that gets dropped.  I still don't have an answer.
  • SYNC interface for CARP not working

    2
    0 Votes
    2 Posts
    1k Views
    G
    This turned out to be a simple mistake on my part combined with a UI problem. When creating the SYNC interfaces - I had clicked "Insert my local MAC address" in the MAC address field, thinking it would populate using the NIC's MAC address, not the machine I am logging in from. When I realized it didn't, I blanked the field, assuming it would revert to its own MAC if the field was blank. Not so. My originally entered MAC address remained with the interface even after the field was blanked and saved, resulting in a loop. Changing the MAC addresses such that they do not conflict solved the issue.
  • Strange Question

    1
    0 Votes
    1 Posts
    832 Views
    No one has replied
  • Questions about VIPs and NAT in Failover Setups

    2
    0 Votes
    2 Posts
    1k Views
    jimpJ
    1- Provided they are used with a CARP VIP or subnets routed to a CARP VIP, yes 2a- Yes, CARP VIP or IP alias w/CARP VIP as its interface 2b- Yes, provided your routed subnet is routed via your CARP VIP 3- Proxy ARP won't work with failover, it would cause an IP conflict. All it does is listen for ARP requests for the IPs it is given and answer with the firewall's MAC on the appropriate interface. That's really all there is to it.  See here for more info.
  • CARP routing problem

    5
    0 Votes
    5 Posts
    2k Views
    J
    This is also related to hiding everything behind the CARP VIP: You don't want to use the CARP VIP to do the gateway pinging, otherwise your CARP BACKUP hosts won't know if they are connected. The pings go out, but with the source address rewritten as the CARP VIP so the ping responses come back to the VIP, not the CARP BACKUP host. So you need to add a NO NAT for these ping packets to make the gateway pinging work properly.
  • CARP interface human readable name possible?

    4
    0 Votes
    4 Posts
    2k Views
    jimpJ
    yes, you can submit a feature request (don't assign it or give it a target though).
  • IP Alias on CARP doesn't work with port forward?

    2
    0 Votes
    2 Posts
    1k Views
    J
    I've figured it out!  Despite looking like everything is fine after hitting apply, the system acts really strangely until you disable CARP and reenable.
  • I hope this isnt a dumb question

    5
    0 Votes
    5 Posts
    1k Views
    M
    Yes you just have to ensure you use a different VHID for each VIP on the same interface
  • VIP to VIP SMTP - Help Please

    1
    0 Votes
    1 Posts
    905 Views
    No one has replied
  • NTP interface choice might fail on backup in failover/VIP setups [solved]

    2
    0 Votes
    2 Posts
    1k Views
    S
    Thanks. I've been trying to figure out why NTP was unable to reach our NTP servers, and using ntpq I'd determined that dstadr was set to a guest interface. Having now selected both interfaces in the NTP config page, my pfsense box can now reach our NTP servers, and clients on the guest interface can reach the pfsense NTP server.
  • Changes on Primary sync incorrect changes on secondary

    2
    0 Votes
    2 Posts
    1k Views
    jimpJ
    Interfaces > (assign) Make sure all interfaces exist on both units and have been assigned in the correct order. That behavior can be seen when you have interfaces out of order on one system. Also make sure their internal names line up, e.g. OPT3 on primary is the same as OPT3 on the secondary. You might have to edit config.xml on the backup to fix the order properly in some cases
  • Multiple Subnets on One Interface

    5
    0 Votes
    5 Posts
    5k Views
    S
    Hi jimp, Thank you for the quick answer. When I added 'firewall rule' and 'Outbound NAT rule' it works! But now it works only https sites. Not others. Please help. Thanks in advance Sabir
  • Hyper-V with CARP

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.