Re: FreeBSD 10.1: Intel dual port 10GbE card (82599EB) second port not present?

2015-02-21 Thread John Jasen
Well, oops. That would indeed explain the behavior. Thanks! On 02/20/2015 02:02 PM, Ryan Stone wrote: > I think that you might be a bit confused about the behaviour. An ix > port will only be missing if > > a) You have a non-Intel SFP+ installed > b) hw.ix.unsupported_sfp=1 is not set in loader.

[Differential] [Updated, 2, 475 lines] D1438: FreeBSD callout rewrite and cleanup

2015-02-21 Thread hselasky (Hans Petter Selasky)
hselasky updated this revision to Diff 3896. hselasky added a comment. Disallow task switching during hard tick interrupts. CHANGES SINCE LAST UPDATE https://reviews.freebsd.org/D1438?vs=3868&id=3896 REVISION DETAIL https://reviews.freebsd.org/D1438 AFFECTED FILES share/man/man9/Makefile

[Differential] [Updated, 2, 481 lines] D1438: FreeBSD callout rewrite and cleanup

2015-02-21 Thread hselasky (Hans Petter Selasky)
hselasky updated this revision to Diff 3897. hselasky added a comment. Add context to diff. CHANGES SINCE LAST UPDATE https://reviews.freebsd.org/D1438?vs=3896&id=3897 REVISION DETAIL https://reviews.freebsd.org/D1438 AFFECTED FILES share/man/man9/Makefile share/man/man9/timeout.9 sys

Re: NAT question

2015-02-21 Thread Mason Loring Bliss
On Sat, Feb 21, 2015 at 12:46:04AM -0500, Paul A. Procacci wrote: > There is a section in ipfw(8) labeled: 'NETWORK ADDRESS TRANSLATION (NAT)' > In that section it details how to bind a nat instance to an ip address. > (Namely, the ip argument) I'm not sure how I missed that there can be multiple

Re: NAT question

2015-02-21 Thread Konstantin Kulikov
Hello. ipfw nat 1 config ip 1.2.3.4 ipfw nat 2 config ip 1.2.3.5 ipfw nat 3 config ip 1.2.3.6 ipfw add nat 1 ip from 4.5.6.7/32 to any out via $ext ipfw add nat 2 ip from 4.5.6.0/24 to any out via $ext ipfw add nat 3 ip from 8.9.0.0/24 to any out via $ext ipfw add nat 1 ip from any to 1.2.3.4 in v

Re: NAT question

2015-02-21 Thread Mason Loring Bliss
On Sat, Feb 21, 2015 at 10:55:26PM +0400, Konstantin Kulikov wrote: > ipfw nat 1 config ip 1.2.3.4 [...] > Should work (untested though). That looks about right. Thank you. I'll be testing tomorrow I think. Once I got things working in a basic way I want to add in some traffic shaping, but I'll

Re[2]: NAT question

2015-02-21 Thread wishmaster
--- Original Message --- From: "Konstantin Kulikov" Date: 21 February 2015, 20:55:54 > Hello. > > ipfw nat 1 config ip 1.2.3.4 > ipfw nat 2 config ip 1.2.3.5 > ipfw nat 3 config ip 1.2.3.6 > ipfw add nat 1 ip from 4.5.6.7/32 to any out via $ext > ipfw add nat 2 ip from 4.5.6.0/24 to any