Skocz do zawartości

PimP517

Użytkownicy
  • Zawartość

    7
  • Rejestracja

  • Ostatnio

Posty napisane przez PimP517


  1. Witam.

    Czy to jest możliwe żeby spamboty generowały 60 tys odsłon dziennie?

    Przy skrypcie IP.Board na hostingu unixstorm miałem użycie "*122.56cp* z limitu 120cp/dobę".

    Wgrałem IP.Board ustawiłem forum offline nie wchodziłem z miesiąc a tu nagle mail że przekraczam użycie.

     

    Pisząc do supportu odesłali mi link ze statystykami Webalizer, ale takie obciążenie, na wyłączonym forum?


  2. Czyli w Primary nameserver ns1.cs-city.eu czy ns399795.ovh.net

     

    Secondary nameserver ns1.cs-city.eu cannot be resolved on this system
    

     

    Ok zrobiłem tak:

    Dodałem w default-zones

    zone "cs-city.eu" {
     type master;
     file "/etc/bind/cs-city.eu";
     notify yes;
    };
    

     

    W pliku /etc/bind/cs-city.eu

    $TTL 604800
    @ IN SOA ns1.cs-city.eu. root.cs-city.eu. (
      2009060302
      604800
      86400
      2419200
      604800 )
      IN	NS	ns1.cs-city.eu.
      IN	NS	ns2.cs-city.eu.
      IN	MX	10 cs-city.eul.
    @	IN	A	37.59.44.90
    ns1  IN	A	37.59.44.90
    ns2  IN	A	37.59.44.90
    

    Teraz co mam wpisać w Serwery DNS na unixstorm.org?


  3. Jak widzisz jeszcze nie spie. Siedze i czytam i nie mogę znajść rozwiązania. Nawet jakieś francusko niemieckie filmiki na yt oglądam i nie kumam dalej.

    Będe komuś płącic za to że mi zrobi i tak nic z tego nie będę miał bo jak będę chciał ponownie to zrobić to znowu płacić a tak to się nauczę i będę już wiedział smile.png

    Wędkę mi trzeba nie rybę.

    Ps.

    Mogę ci zapłacic ale nie za to żebyś zrobił tylko żebyś mi powiedział jak to zrobić.


  4. Witam.

     

    Mam wykupioną domene w unixstorm.org cs-city.eu / ns1.unixstorm.org / ns1.unixstorm.org.

    Zainstalowałem serwer bind9 apt-get install bind9 do tego posiadam webmina.

    Serwer dedykowany posiadam w ovh.pl

    Co mam teraz zrobić by mi to działało.

     

    Pliki:

    /etc/bind/named.conf

     

    include "/etc/bind/named.conf.options";
    include "/etc/bind/named.conf.local";
    include "/etc/bind/named.conf.default-zones";
    

     

    /etc/bind/named.conf.options

    options {
    directory "/var/cache/bind";
    // If there is a firewall between you and nameservers you want
    // to talk to, you may need to fix the firewall to allow multiple
    // ports to talk.  See http://www.kb.cert.org/vuls/id/800113
    // If your ISP provided one or more IP addresses for stable
    // nameservers, you probably want to use them as forwarders. 
    // Uncomment the following block, and insert the addresses replacing
    // the all-0's placeholder.
    // forwarders {
    //  0.0.0.0;
    // };
    auth-nxdomain no;    # conform to RFC1035
    listen-on-v6 { ::1; };
    listen-on { any; };
    allow-recursion { 127.0.0.1; };
    };
    
    

     

    /etc/bind/named.conf.local

    //
    // Do any local configuration here
    //
    // Consider adding the 1918 zones here, if they are not used in your
    // organization
    //include "/etc/bind/zones.rfc1918";
    
    

     

    /etc/bind/named.conf.default-zones

    // prime the server with knowledge of the root servers
    zone "." {
    type hint;
    file "/etc/bind/db.root";
    };
    // be authoritative for the localhost forward and reverse zones, and for
    // broadcast zones as per RFC 1912
    zone "localhost" {
    type master;
    file "/etc/bind/db.local";
    };
    zone "127.in-addr.arpa" {
    type master;
    file "/etc/bind/db.127";
    };
    zone "0.in-addr.arpa" {
    type master;
    file "/etc/bind/db.0";
    };
    zone "255.in-addr.arpa" {
    type master;
    file "/etc/bind/db.255";
    };
    

×