CentOS 7  

 
Đây là cài đặt Chuyển hướng từ đối sánh URL.
Ví dụ này dựa trên về môi trường như sau.
 | -------- ------------------------------------------ -------------------------- | ------------------- ------------- ----------- --------- |10.0.0.30 |10.0.0.51 |10.0.0.52 |10.0.0.53 ------ ----- ------- ------ - ------ ------ ------- ------ | Giao diện người dùng | | Phần phụ trợ 
 
Ví dụ: Định cấu hình Pound như thế
kết nối HTTP tới dlp. srv.world được chuyển tiếp đến Phần cuối
[root@dlp ~]#
mv /etc/pound.cfg /etc/pound.cfg.org

[root@dlp ~]#
vi /etc/pound.cfg
User "pound"
Group "pound"
LogLevel 3
LogFacility local1
Alive 30

ListenHTTP
    Address 0.0.0.0
    Port 80
End

Service
    # define for dlp.srv.world

    HeadRequire "Host: .*dlp.srv.world"
    BackEnd
        Address  10.0.0.51
        Port     80
        Priority 5
    End
End

Service
    # define for dlp.virtual.host

    HeadRequire "Host: .*dlp.virtual.host"
    BackEnd
        Address  10.0.0.52
        Port     80
        Priority 5
    End
End

Service
    # define for others

    HeadRequire "Host: .*"
    BackEnd
        Address  10.0.0.53
        Port     80
        Priority 5
    End
End

[root@dlp ~]#
systemctl restart pound

[2] Đảm bảo tất cả đều hoạt động tốt để truy cập vào máy chủ giao diện người dùng từ Máy khách có HTTP như sau.