Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Unix Operating Systems > OpenBSD > comp.unix.bsd.openbsd.misc

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-16-2008, 08:11 AM
Dave
 
Posts: n/a
Default pf and ftp from gateway

Hello,
I've got OpenBSD 4.2 set up as a firewall/gateway. I'm using pf and
ftp-proxy. All of that is working fine from behind the lan, clients can get
to ftp sites and retrieve files. My issue is the gateway box itself can not.
I try to set the PKG_PATH environment variable so i can download packages
but i keep getting timeouts. From the tcpdump output i'm seeing pf is
blocking connections back to the gateway box's port 20 and blocking outgoing
connections. I can connect to the ftp sites just fine from behind the
gateway from lan boxes, and can connect fine from the gateway, but when i go
to do anything like an ls, or a cd or a get, i get disconnected.
Any ideas what to check?
Thanks.
Dave.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-16-2008, 08:11 AM
Helmut Schneider
 
Posts: n/a
Default Re: pf and ftp from gateway

Dave <dmehler26@woh.rr.com> wrote:
> I've got OpenBSD 4.2 set up as a firewall/gateway. I'm using pf and
> ftp-proxy. All of that is working fine from behind the lan, clients can
> get to ftp sites and retrieve files. My issue is the gateway box itself
> can not. I try to set the PKG_PATH environment variable so i can
> download packages but i keep getting timeouts. From the tcpdump output
> i'm seeing pf is blocking connections back to the gateway box's port 20
> and blocking outgoing connections. I can connect to the ftp sites just
> fine from behind the gateway from lan boxes, and can connect fine from
> the gateway, but when i go to do anything like an ls, or a cd or a get,
> i get disconnected. Any ideas what to check?


pf.conf would be *very* helpful.

--
No Swen today, my love has gone away
My mailbox stands for lorn, a symbol of the dawn
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-16-2008, 08:11 AM
Dave
 
Posts: n/a
Default Re: pf and ftp from gateway

Hello,
I've included the pf.conf file below.
Dave.

# pf.conf
# for use on gateway box

# Required order: options, normalization, queueing, translation, filtering.
# Macros and tables may be defined and used anywhere.
# Note that translation rules are first match while filter rules are last
match.

# define the two network interfaces
ext_if = "xl0"
int_if = "dc0"
tcp_state="flags S/SA keep state"
int_net = $int_if:network
ipphone1="192.168.0.5"
sip="5060:5081"
sip2="19034"
sip3="16398"
sip4="64339"
sip5="1024:65535"

# define some address macros
lan_server = "192.168.0.3"
vpn_server = "192.168.0.4"
# define services
int_to_lan_services = "{ ssh, smtp, www, pop3, https, pop3s, 1723, 8000 }"
lan_to_int_services = "{ ftp-data, ftp, ssh, smtp, 43, domain, http, 81,
pop3, nntp, imap, https, imaps, pop3s, 1790, 1791, 1792, 1793, 1794, 1795,
2401, 4000, 4661, 4662, 4711, 4821,
5000, 6969, 11371, 2200, 5001, 5190, 5999, 6112, 6667, 8000, 8021, 8080,
8505, 8880, 9102, 8026, 26881, 5050, 8443 }"
lan_to_fw_services = "{ ssh }"
fw_to_lan_services = "{ ssh, 9101, 9102, 9103 }"
nameservers = "{ 65.24.7.3, 127.0.0.1, 68.166.89.140, 69.46.17.123 }"
isp_dhcp_server = "10.40.224.1"
InICMP = "{ 3,8,11 }"
OutTracerouteUDP="{ 33434 >< 33525 }"

# options
set optimization normal
set block-policy return
set require-order yes
set fingerprints "/etc/pf.os"
set skip on lo0

# normalize packets to prevent fragmentation attacks
scrub in

nat-anchor "ftp-proxy/*"
rdr-anchor "ftp-proxy/*"

# One translation line per IP phone. static-port is necessary to make pf
retain the UDP
# ephemeral port, so that the remote SIP proxy knows what session we belong
to
nat on $ext_if inet proto udp from $ipphone1 to any -> ($ext_if) static-port
# translate lan client addresses to that of the external interface
nat on $ext_if from !($ext_if) -> ($ext_if:0)
rdr pass on $int_if proto tcp to port ftp -> 127.0.0.1 port 8021
rdr on $ext_if inet proto tcp from any to any port $int_to_lan_services ->
$lan_server
rdr on $ext_if inet proto tcp from any to any port $sip4 -> $ipphone1
rdr on $ext_if inet proto udp from any to any port 1194 -> $vpn_server port
1194
rdr on $int_if inet proto tcp from $int_net to any port www -> 192.168.0.254
port 3128

anchor "ftp-proxy/*"

# block by default
block log all

# immediately prevent IPv6 traffic from entering or leaving all interfaces
block quick inet6 all

# allow WAN requests from the internet to enter EXT
# in order to contact our web server (keep state on this connection)
pass in on $ext_if inet proto tcp from any to $lan_server port
$int_to_lan_services $tcp_state
# UDP 1194 for openvpn
pass in on $ext_if inet proto udp from any to $vpn_server port 1194 keep
state

# Allow dhcp in
pass in quick on $ext_if inet proto udp from any port bootps to
255.255.255.255 port bootpc keep state

# [traceroute to internal host 2nd stage: receiving error code of icmp-type
3
# (destination unreachable) and icmp-type 11 (time exceeded)]
pass in quick on $ext_if inet proto icmp from any to any icmp-type $InICMP
keep state

# allow UDP requests to port 53 from firewall to exit EXT
# in order to contact internet nameservers (keep state on this connection)
pass out quick on $ext_if inet proto { tcp,udp } from $ext_if to any port 53
$tcp_state

# allow UDP requests to port 123 from firewall to exit ext_if_if
# in order to contact internet ntp servers
# (keep state on this connection)
pass out quick on $ext_if inet proto { tcp,udp } from $ext_if to any port
123 $tcp_state

# Allow UDP requests to port 67 from firewall to exit ext_if
# in order to contact internet dhcp servers (keep state on this connection)
pass out quick on $ext_if inet proto udp from $ext_if to any port bootps
keep state

# allow lan requests from lan clients to exit EXT
# (after natting is performed) in order to contact internet servers
# (keep state on this connection)
pass out quick on $ext_if inet proto tcp from $ext_if to any port
$lan_to_int_services $tcp_state

# [traceroute to outside world 1st stage: probing...man traceroute(8)]
pass out quick on $ext_if inet proto udp from any to any port
$OutTracerouteUDP keep state

# allow ICMP requests from firewall to exit EXT (after natting is performed)
# in order to ping/traceroute internet hosts on the behalf of lan clients
pass out quick on $ext_if inet proto icmp from $ext_if to any icmp-type 8
code 0 keep state

# allow UDP requests to port 53 from lan clients to enter LAN
# in order to perform dns queries on the firewall (keep state on this
connection)
pass in quick on $int_if inet proto { tcp,udp } from $int_net to $int_if
port 53 $tcp_state

# allow UDP requests to ports 67, 68, and 123 from int_if clients to enter
int_if
# in order to perform dhcp and ntp queries on the firewall
# ( Keep state on this connection)
pass in quick on $int_if inet proto { tcp,udp } from $int_net to $int_if
port { 67, 68, 123 } $tcp_state

# allow LAN requests from lan clients to enter LAN
# in order to contact internet servers (keep state on this connection)
pass in quick on $int_if inet proto tcp from $int_net to any port
$lan_to_int_services $tcp_state

# lan admin connects to firewall via ssh for administrative purposes
pass in quick on $int_if inet proto tcp from $int_net to $int_if port
$lan_to_fw_services $tcp_state

# allow requests from lan admin to enter LAN
# in order to ping/traceroute any system (firewall, dmz server, and internet
hosts)
pass in quick on $int_if inet proto icmp from $int_net to any icmp-type 8
code 0 keep state

# allow squid connections from lan to proxy
pass in quick on $int_if inet proto tcp from any to 192.168.0.254 port 3128
$tcp_state

# allow WAN requests from the internet to exit LAN
# in order to contact our lan server (keep state on this connection)
pass out quick on $int_if inet proto tcp from any to $lan_server port
$int_to_lan_services $tcp_state
# UDP 1194
pass out quick on $int_if inet proto udp from any to $vpn_server port 1194
keep state

# firewall connects to the lan server via scp/ssh for backup purposes
pass out quick on $int_if inet proto tcp from $int_if to $lan_server port
$fw_to_lan_services $tcp_state

# sip for viatalk
pass in quick on $int_if inet proto udp from $ipphone1 port $sip to any keep
state
pass in quick on $int_if inet proto udp from $ipphone1 port $sip2 to any
keep state
pass in quick on $int_if inet proto udp from $ipphone1 port $sip3 to any
keep state
pass out quick on $ext_if inet proto udp from any port $sip to any keep
state
pass out quick on $ext_if inet proto udp from any port $sip2 to any keep
state
pass out quick on $ext_if inet proto udp from any port $sip3 to any keep
state

pass in quick on $int_if inet proto tcp from $ipphone1 port $sip to any
$tcp_state
pass in quick on $int_if inet proto tcp from $ipphone1 port $sip to any
$tcp_state
pass out quick on $ext_if inet proto tcp from any port $sip to any
$tcp_state

# sip protocols from the internet
pass in quick on $ext_if inet proto tcp from any to any port $sip4
$tcp_state
pass out quick on $int_if inet proto tcp from $int_if to $ipphone1 port
$sip4 $tcp_state

# these are for rtp audio reception
pass in quick on $int_if inet proto udp from $ipphone1 port $sip5 to any
keep state
pass out quick on $ext_if inet proto udp from any port $sip5 to any keep
state

"Helmut Schneider" <jumper99@gmx.de> wrote in message
news:5rilhbF14vdl9U1@mid.individual.net...
> Dave <dmehler26@woh.rr.com> wrote:
>> I've got OpenBSD 4.2 set up as a firewall/gateway. I'm using pf and
>> ftp-proxy. All of that is working fine from behind the lan, clients can
>> get to ftp sites and retrieve files. My issue is the gateway box itself
>> can not. I try to set the PKG_PATH environment variable so i can
>> download packages but i keep getting timeouts. From the tcpdump output
>> i'm seeing pf is blocking connections back to the gateway box's port 20
>> and blocking outgoing connections. I can connect to the ftp sites just
>> fine from behind the gateway from lan boxes, and can connect fine from
>> the gateway, but when i go to do anything like an ls, or a cd or a get,
>> i get disconnected. Any ideas what to check?

>
> pf.conf would be *very* helpful.
>
> --
> No Swen today, my love has gone away
> My mailbox stands for lorn, a symbol of the dawn



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-16-2008, 08:11 AM
Helmut Schneider
 
Posts: n/a
Default Re: pf and ftp from gateway

Dave <dmehler26@woh.rr.com> wrote:

>> pf.conf would be *very* helpful.

>
> I've included the pf.conf file below.


OK, the *relevant* part would have been enogh.

> pass out quick on $ext_if inet proto tcp from $ext_if to any port
> $lan_to_int_services $tcp_state


Anyway, I can't find any rules for lo0. Also, if you are using OpenBSD >=4.2
"flags S/SA keep state" is default.

--
No Swen today, my love has gone away
My mailbox stands for lorn, a symbol of the dawn

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-16-2008, 08:11 AM
DR
 
Posts: n/a
Default Re: pf and ftp from gateway

Hi Dave,

I had the same problem. My solution:

no rdr on $int_if proto tcp to $int_ip port ftp
rdr pass on $int_if proto tcp to port ftp -> 127.0.0.1 port 8021

The second line is the one from
http://openbsd.org/faq/pf/example1.html#allrules

The first lines says "do not redirect to the ftp-proxy if the
destination IP is the LAN-IP of the gateway machine".

Regards
DR
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-16-2008, 08:11 AM
Dave
 
Posts: n/a
Default Re: pf and ftp from gateway

Hello,
Thanks. I have a skip for lo0 so nothing will touch it. Thanks for the
tip on flags.
Dave.

"Helmut Schneider" <jumper99@gmx.de> wrote in message
news:5sn09jF1a700fU1@mid.individual.net...
> Dave <dmehler26@woh.rr.com> wrote:
>
>>> pf.conf would be *very* helpful.

>>
>> I've included the pf.conf file below.

>
> OK, the *relevant* part would have been enogh.
>
>> pass out quick on $ext_if inet proto tcp from $ext_if to any port
>> $lan_to_int_services $tcp_state

>
> Anyway, I can't find any rules for lo0. Also, if you are using OpenBSD
> >=4.2 "flags S/SA keep state" is default.

>
> --
> No Swen today, my love has gone away
> My mailbox stands for lorn, a symbol of the dawn



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 10:09 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 104