'2021/04/07'에 해당되는 글 2건

  1. 2021.04.07 [PHP] 접속 아이피 확인
  2. 2021.04.07 [apache] IP주소로 접속 시 차단 방법

$_SERVER['REMOTE_ADDR']

 

function get_client_ip()
{
    $ipaddress = '';
    if (getenv('HTTP_CLIENT_IP'))
        $ipaddress = getenv('HTTP_CLIENT_IP');
    else if(getenv('HTTP_X_FORWARDED_FOR'))
        $ipaddress = getenv('HTTP_X_FORWARDED_FOR');
    else if(getenv('HTTP_X_FORWARDED'))
        $ipaddress = getenv('HTTP_X_FORWARDED');
    else if(getenv('HTTP_FORWARDED_FOR'))
        $ipaddress = getenv('HTTP_FORWARDED_FOR');
    else if(getenv('HTTP_FORWARDED'))
        $ipaddress = getenv('HTTP_FORWARDED');
    else if(getenv('REMOTE_ADDR'))
        $ipaddress = getenv('REMOTE_ADDR');
    else
        $ipaddress = 'UNKNOWN';
    return $ipaddress;
}

 

출처 : gocoder.tistory.com/664

Posted by 꼬장e
,

apache 에서 특정 ip 접속 제어를 하기위해 httpd.conf 또는 httpd-vhosts.conf 수정

<VirtualHost *:80>

    ServerName xxx.xxx.xxx.xxx  ##자신의 IP주소

    <Location>

        Order deny, allow

        Deny from all

    </Location>

</VirtualHost>

Posted by 꼬장e
,