Search
Results (397)
- Bug #3470 (Resolved): IPSec VPN not recognizing alternative IP name
- Using a self-created/signed CA (created via p ... P names for the 1 real WAN IP and the 4 CARP VIP WAN IPs. When used with an OpenVPN config ... d only via the WAN IP address (a static CARP VIP and the "local" directive used to bind OpenV ... on-recognition of the alternative IP name).
- Feature #3413 (Resolved): CARP interface names in WebGUI
- As mentioned on the forum: https://forum.pfse ... st in the WebGUI, something like this: opt3_vip1 opt1_vip2 opt5_vip3 and so on... Would be nice if you could ... ill perhaps get the CARP interface name opt5_vip2. You then rename the display name of that C ... e solution (and perhaps easier to implement?)
- Bug #3407 (Resolved): Changing CARP IP to IP Alias doesn't work until failover is trigered
- If you change an existing CARP IP Address to ... kup and then move it back over to the master.
- Bug #3346 (Rejected): 1:1 NAT rule (w/ VIP) breaks connectivity to WAN
- Clean installation on a computer, setup defau ... 192.168.10.18 External IP: 50.242.64.21 VIP gets created (50.242.64.21/32) VM (linux, o ... c or somesuch I can provide, let me know. VIP Rule screenshot and 1:1 NAT rule screenshot ... to work. Version: 2.1-RELEASE (i386)
- Bug #3331 (Resolved): Rules to pass out traffic for Proxy ARP VIP entries have an incorrect destination
- On 2.1 some rules are generated on an interface (e.g. WAN) to pass out traffic for Proxy ARP VIP addresses. These rules look like so: <pre> pass out route-to ( em0 [gateway_ip] ) from [parp_vip] to ![parp_vip]/32 keep state allow-opts label "let out any ... tination for that rule should not be "![parp_vip]/32" but "![interface_subnet_id]/[interface_ ... affic from a 1:1 NAT host using one of these VIPs is unable to reach items in the WAN subnet ... sent directly. The case is less clear if the VIP lies outside of a subnet that exists on the firewall. A similar issue is possible with IP Alias VIPs but with IP Alias VIPs the subnet mask on the VIP can be changed to match the interface, negat ... d on WAN to pass quick out to the WAN subnet.
- Bug #3257 (Resolved): IP Alias on CARP IP doesn't work where IP alias above CARP parent in list
- I have 300 over IPs in 3 different subnets. I ... inutes later. But these IPs shown at list of VIP lists on WebConfigurator.
- Bug #3243 (Resolved): OpenVPN does not rebind when gateway fails over
- <pre> function openvpn_resync_if_needed ($mo ... pre> When a gateway group is tied to CARP VIPs and OpenVPN client or server is bound to a ... e # @$current_device@ is the name of the VIP (e.g. wan_vip1) and @$this_device@ is the interface (e.g. ... # @$new_device@ is, again, the name of the VIP GWGroup failed over to (e.g. opt2_vip2) and @$this_device@ is the interface (e.g. ... PN should reload or not? Thanks, Shahid
- Bug #3211 (Rejected): DHCP failover configuration not working in 2.1-RELEASE
- Both nodes are getting setup as Primary. ... ull request in github with the fix? Shahid
- Bug #3174 (Resolved): OpenVPN Client bound to a gateway group should not start on backup CARP vip
- There is no handling for gateway groups in <p ... enVPN client to start even if the underlying vip is a CARP backup. Recommend adding at li ... /* the interface is a gateway group. If a vip is defined and its a CARP backup then do not ... if (($a_groups[$settings['interface']][0]['vip'] <> "") && (get_carp_interface_status($a_groups[$settings['interface']][0]['vip']) == "BACKUP")) return; } </pre>
- Bug #3172 (Resolved): function return_gateway_groups_array() returns the incorrect vip
- I am not even a PHP novice so please take these findings with a grain of salt. The vip returned is always the last vip that the <pre> foreach ($group['i ... his is causing OpenVPN Server to bind to the vip on the backup tier. I think to fix it tw ... should be: <pre> if (!is_array($gwvip_arr[$group['name']])) </pre> and 2. Line ... 7 should be: <pre> if (is_array($gwvip_arr[$group['name']])&& !empty($gwvip_arr[$group['name']][$member])) $groupmember['vip'] = $gwvip_arr[$group['name']][$member]; </pre> Thanks, Shahid