search for: gateway_ip

Displaying 5 results from an estimated 5 matches for "gateway_ip".

Did you mean: gateways_ip
2011 Jun 15
1
Re connecting to SIP Provider with virtual IP, from pacemaker cluster
...wich is when this is the default route, the real interface and not the aliased. For exemple if you have eth0 the real, eth0:0 the virtual, you can try to add in your failback/failover cluster script something like this : # when the virtual ip come up ip r a "SIP_PROVIDER_IP" via "GATEWAY_IP" dev eth0:0 # when the virtual ip come down, maybe facultative because the route is deleted when the interface fall down ip r d "SIP_PROVIDER_IP" via "GATEWAY_IP" dev eth0:0 Regards, C?dric Le 15/06/11 19:01, asterisk-users-request at lists.digium.com a ?crit : > D...
2018 Jul 02
1
Re: East-west traffic network filter
...t' direction='inout' priority='-500'> <mac protocolid='arp'/> </rule> <!-- accept traffic only from specified MAC address --> <rule action='drop' direction='in'> <ip match='yes' srcipaddr='$GATEWAY_IP' srcipmask='$GATEWAY_IP_MASK' /> </rule> <!-- allow traffic only to specified MAC address --> <rule action='drop' direction='out'> <ip match='yes' dstipaddr='$GATEWAY_IP' dstipmask='$GATEWAY_IP_M...
2006 Jan 30
1
Gateways
I have a DrayTek Vigor3300V gateway with 8 FXO ports. I am trying to configure asterisk to dial out on the gateway. I have one of the FXO ports configured on sip account 100. If I dial the sip account then the router gives me dial tone, with which I can dial a number. Unfortunately this is not the behaviour I desire. I want to setup the FXO port as a trunk with out it giving me a dial tone. I have
2005 Feb 25
0
Asterisk with PortaOne Radius client- problem in accounting script with OH323
...NotHangup; a copy of agi-rad-auth.pl exten => 5444,6,agi,radauthor.pl|AuthorizeBy=Account&IfFailed=DoNotHangup; a customized copy of agi-rad-auth.pl exten => 5444,7,Goto(astrad2,5444,1) [astrad2] exten => 5444,1,Read(dest_number,IVR,skip) exten => 5444,2,Dial(OH323/${dest_number}@Gateway_IP,40) ; outgoing call exten => 5444,3,Hangup Please find the error below, generated by the perl script ast-rad-acc.pl without being able to send any packet to Radius after the outgoing call: Use of uninitialized value in concatenation (.) or string at ./ast-rad-acc.pl line 244, <GEN744>...
2018 Jun 28
4
East-west traffic network filter
Hello, I would like to make filter that allows communication only between specified VMs. Those VMs should be specified by their MAC address. The filter should extend clean-traffic but I was not able to get it working with that reference. I have came up with modified clean-traffic which works fine [1]. Is there a way to achieve the same behavior with reference to clean-traffic? Thank you. Best