Best-Selling Hosting

Top Rated Providers

Editors Pick

Changing APF log for TDP/UDP drops Published: Aug 27, 2004
  • Rating

    0/5

TemplateMonster, one of the largest online web design providers, is furious with Paypal online payment processor. They have decided to take legal action and leave Paypal for a new merchant provider.

TemplateMonster, one of the largest online web design providers, is furious with Paypal online payment processor. They have decided to take legal action and leave Paypal for a new merchant provider.

From TemplateMonster

"Templatemonster would like to bring to your attention some changes that will affect our work. We earnestly hope that you accept, understand and support us in this decision. The subject concerns our relationship with PayPal.

For more than 1.5 years, ArtVertex, Inc has used PayPal Inc. as a quality merchant system that we had recommended to others as a means of online payment.

Recently we noticed that we were not receiving the treatment that we would expect as a high volume merchant.

- Firstly, there were many instances of groundless suspended orders in which TM was discredited before our clients. That is first in order.
- There was an absolute absence of operational help in resolving technical problems.
- Repeated instances of restricted access to our account and denial of our rights to use our resources to pay our affiliates and partners.

Notwithstanding frequent requests for information regarding the reasons for this behavior, we were repeatedly ignored and stonewalled.

At the present time, PayPal even refuses to give us reasonable answers in our efforts to rectify the conditions connected to problems with our account. The Management Board of ArtVertex, Inc regards it as unacceptable to continue relations with PayPal because the general financial condition of the company and the financial relationship with our partners is threatened. We have determined that such a policy from the PayPal side violates any sense of "fair play", and is injurious to orderly business relations, and seems deliberately injurious to our relations with our clients.

In this connection, Templatemonster has made the reasonable determination that we do not recommend the use of this payment system to our partners for the reasons that it invites the possibility of retaliation from PayPal.

At the present time, TM is seeking legal recourse, charging them with unjustified and illegal seizure of our resources, preventing us from having access to the company's account, resulting in both direct and indirect losses. In connection with all of the above conditions, we, the Board of Directors of ArtVertex, Inc decided to refuse further services from PayPal, and to use other merchant systems, which, when compared with PayPal, are better able to treat our large sums and large volume of transactions of non-tangible products. This decision has the strategic aim of protecting the company's financial stability and to facilitate regular and recurring payments to our partners.

At the present time, Templatemonster is employing the practice of diversification of merchant system usage to protect and broaden our market segment and to permit payment in different currencies. It is well known that PayPal provides its services to clients in a limited number of countries.

Secondly, the benefits of using MoneyBookers include the possibility of transferring money directly to your bank account, acceptance of checks and WebMoney and the possibility to make direct wire transfers. These possibilities will provide you with the means to fulfill requirements of flexibility in the receipts of affiliate payments (support for payment from all countries in the world).

In addition, Templatemonster is planning to broaden the availability and quantity of payment methods (bank transfer, Western Union, E-Gold). As a gesture of dedicated support, we're going to release personal corporate debit cards, which will accumulate commissions earned by you. You will be able to use these cards in the majority of ATMs, and they will be released to high-volume affiliates at no cost.

Thanking you for your attention and understanding,

Business Development Team
www.templatemonster.com "
  • Rating

    0/5

Related Articles

Comments (11)

  • Gravatar - swampy
    swampy 14:08, September 6, 2004
    i tried this tut on apf 0.9.4 and i does not work i get errors when trying to restart apf good job i backed up files first.
  • Gravatar - pixel
    pixel 13:27, September 20, 2004
    Worked like a charm for me - thx!
  • Gravatar - ryan
    ryan 22:17, September 21, 2004
    great idea -- will review this for added internal feature.
  • Gravatar - vijay srivastava
    vijay srivastava 20:58, September 22, 2004
    how to remove APF from my server any uninstall procedure.
  • Gravatar - squalito
    squalito 14:12, September 29, 2004
    I do not have exactly the same lines in my conf.apf. <br />
    I have the last version : Apf.0.9.4-6<br />
    <br />
    I updated exisitng lines :<br />
    if [ "$DROP_LOG" == "1" ]; then<br />
    # Default TCP/UDP INPUT log chain<br />
    if [ "$EXLOG" == "1" ]; then<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IN_IF -j LOG --log-prefix "** IN_TCP DROP ** " --log-tcp-options --log-ip-options<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IN_IF -j LOG --log-prefix "** IN_UDP DROP ** " --log-ip-options<br />
    else<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IN_IF -j LOG --log-prefix "** IN_TCP DROP ** "<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IN_IF -j LOG --log-prefix "** IN_UDP DROP ** "<br />
    fi<br />
    fi<br />
    <br />
    if [ "$DROP_LOG" == "1" ] && [ "$EGF" == "1" ]; then<br />
    # Default TCP/UDP OUTPUT log chain<br />
    if [ "$EXLOG" == "1" ]; then<br />
    $IPT -A OUTPUT -p tcp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_TCP DROP ** " --log-tcp-options --log-ip-options<br />
    $IPT -A OUTPUT -p udp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_UDP DROP ** " --log-ip-options<br />
    else<br />
    $IPT -A OUTPUT -p tcp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_TCP DROP ** "<br />
    $IPT -A OUTPUT -p udp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_UDP DROP ** "<br />
    fi<br />
    fi<br />
    <br />
    <br />
    by these lines<br />
    if [ "$DROP_LOG" == "1" ]; then<br />
    # Default TCP/UDP INPUT log chain<br />
    if [ "$EXLOG" == "1" ]; then<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug --log-tcp-options --log-ip-options<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug --log-ip-options<br />
    else<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug<br />
    fi<br />
    fi<br />
    <br />
    if [ "$DROP_LOG" == "1" ] && [ "$EGF" == "1" ]; then<br />
    # Default TCP/UDP OUTPUT log chain<br />
    if [ "$EXLOG" == "1" ]; then<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug --log-tcp-options --log-ip-options<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug --log-ip-options<br />
    else<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IF -j LOG --log-level debug<br />
    fi<br />
    fi<br />
    <br />
    <br />
    and evrything is working fine<br />
    <br />
    Thanks for this article<br />
    Squalito<br />
  • Gravatar - rYno267
    rYno267 05:24, November 15, 2004
    When I do <br />
    "tail –f /var/log/iptables"<br />
    <br />
    I get this: "tail: .f: No such file or directory<br />
    ==> /var/log/iptables <==<br />
    "<br />
    <br />
    Any Ideas? thanks.
  • Gravatar - Madlaker
    Madlaker 20:24, December 4, 2004
    I get the same as Ryno above. I did a locate on iptables and there is no iptables under /var let alone /var/logs.<br />
    <br />
    Is there another step we have to preform?<br />
    <br />
    Any ideas would be appreciated.
  • Gravatar - Madlaker
    Madlaker 20:46, December 4, 2004
    Just an update..<br />
    <br />
    Ok, simple solution.<br />
    <br />
    when you restarted the firewall like me, you probably go an error that you missed like I did the first time.<br />
    <br />
    /etc/apf/apf: line 1: ifconfig: command not found<br />
    <br />
    This is because when we are in the su environment instead of su -.<br />
    <br />
    1)just type cd then the enter key<br />
    then su - then the enter key<br />
    <br />
    2)now type /etc/apf/apf –r and you shouldn't get that error.<br />
    <br />
    3) Now type tail –f /var/log/iptables and you should see all the drop packets showing up.<br />
    <br />
    If you get any more errors, be sure to look through all the instructions above.
  • Gravatar - Dennis
    Dennis 00:41, January 7, 2005
    I have .9.4 of APF and the lines you say to replace are different in that version. Fir example, here is the first of the two changes I made:<br />
    <br />
    if [ "$DROP_LOG" == "1" ]; then<br />
    # Default TCP/UDP INPUT log chain<br />
    if [ "$EXLOG" == "1" ]; then<br />
    $IPT -A INPUT -p tcp -m limit --limit $LRATE/minute -i $IN_IF -j LOG -$<br />
    $IPT -A INPUT -p udp -m limit --limit $LRATE/minute -i $IN_IF -j LOG -$<br />
    else<br />
    <br />
    As you see, the "if then else" parts are missing:<br />
    <br />
    if [ "$EXLOG" == "1" ]; then<br />
    else<br />
    <br />
    I guessed that I should make the changes and leave these items in although you did not mention them.<br />
    <br />
    The second section I changed per your instructions are here:<br />
    <br />
    if [ "$DROP_LOG" == "1" ] && [ "$EGF" == "1" ]; then<br />
    # Default TCP/UDP OUTPUT log chain<br />
    if [ "$EXLOG" == "1" ]; then<br />
    $IPT -A OUTPUT -p tcp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_TCP DROP ** " --log-tcp-option$<br />
    $IPT -A OUTPUT -p udp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_UDP DROP ** " --log-ip-options<br />
    else<br />
    $IPT -A OUTPUT -p tcp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_TCP DROP ** "<br />
    $IPT -A OUTPUT -p udp -m limit --limit $LRATE/minute -o $OUT_IF -j LOG --log-prefix "** OUT_UDP DROP ** "<br />
    fi<br />
    <br />
    But I am getting errors, so I suspect something isn't right. <br />
    <br />
    I need some help on this for sure.<br />
    <br />
    Thanks
  • Gravatar - Izzee
    Izzee 12:39, November 21, 2005
    ------------------------------------------<br />
    DO NOT USE THIS TUTIRIAL FOR APF VERSIONS HIGHER THAN 0.9.3<br />
    ------------------------------------------<br />
    <br />
    Latest APF version 0.9.6-1<br />
    /etc/apf/firewall<br />
    Has different $DROP_LOG entries to the ones above.<br />
    Now called $LOG_DROP with completely different rules.<br />
    No point in this tutorial now as it is obsolete.<br />
    <br />
    RAMPRAGE - This tutorial needs updating as a matter of urgency!!
  • Gravatar - webhost
    webhost 20:26, January 15, 2006
    I been meaning to ask this in the past but never have untill now.<br />
    <br />
    I restarted the apf and I get this :<br />
    <br />
    [/etc/apf]# ./apf -r<br />
    iptables v1.2.9: host/network `-' not found<br />
    Try `iptables -h' or 'iptables --help' for more information.<br />
    iptables v1.2.9: host/network `-' not found<br />
    Try `iptables -h' or 'iptables --help' for more information.<br />
    iptables v1.2.9: host/network `-' not found<br />
    Try `iptables -h' or 'iptables --help' for more information.<br />
    iptables v1.2.9: host/network `-' not found<br />
    Try `iptables -h' or 'iptables --help' for more information.<br />
    <br />
    Any idea as to why I am getting this? I dont know about any host/network.<br />
    <br />
    Thanks for you help

Add Your Thoughts

WebHostGear.com is a hosting directory, not a web host.

Copyright © 1998-2012 WebHostGear.com