How to configure RHEL6 to support Aleton 4408 in DSR mode?


 
Thread Tools Search this Thread
Special Forums IP Networking How to configure RHEL6 to support Aleton 4408 in DSR mode?
# 1  
Old 02-14-2014
RedHat How to configure RHEL6 to support Aleton 4408 in DSR mode?

Dears
How to configure RHEL6 to support Aleton 4408 in DSR(Direct Server Return) mode

We have config Aleton 4408 + Windows 2008R2
then Windows set loopback interface with VIP.

the exec the following command in CMD
Code:
netsh interface ipv4 set interface "net" weakhostreceive=enabled 
netsh interface ipv4 set interface "loopback" weakhostreceive=enabled 
netsh interface ipv4 set interface "loopback" weakhostsend=enabled

it's work fine.

Now we need add RHEL6 to Aleton 4408 with DSR mode.
Does any one has experience in this topology.

Please advice.
thanks~
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Gcc g++ on cygwin - configure: error: *** A compiler with support for C++11 language features is req

Hi, Apologies if I posted it in a wrong section as it is related to gcc on cygwin. Please move it to appropriate section. I'm trying to compile and build libsigc++-2.10.2 on cygwin with gcc 8.3.0. when I run ./configure, I get this: I couldn't fully understand what does... (13 Replies)
Discussion started by: prvnrk
13 Replies

2. Red Hat

Unable to configure Photon3G in RHEL6.5

Hi All, Has Any body configured Photon3G ( ZTE MF190 ) on RHEL6.5. Any Device as below .. Bus 001 Device 033: ID 19d2:1254 ZTE WCDMA Technologies MSM Kernel -- 2.6.32-431.30.1.el6.x86_64 Usb modeswitch Version .. usb_modeswitch-data-20120815-2.el6.noarch... (0 Replies)
Discussion started by: linux.amrit
0 Replies

3. Homework & Coursework Questions

Configure DNS in rhel6.3

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: cant configure dns in virtual box. im using rhel6.3. i have a cd containing rhel which the professor provided us.... (2 Replies)
Discussion started by: rpmacaspac
2 Replies

4. Homework & Coursework Questions

regarding adding fields to DSR protocol in ns2.34

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: want to add field to route cache and packet of DSR routing protocol in ns2.34, add field, DSR package in ns2.34... (2 Replies)
Discussion started by: khubalkar
2 Replies

5. Programming

regarding adding fields to DSR protocol in ns2.34

hi i am student doing project in ns2.34. i hav to add field in route cache and packet of DSR routing protocol. which files hv to be changed...pl help me (1 Reply)
Discussion started by: khubalkar
1 Replies

6. Solaris

How to configure the host to dhcp mode

I try a static ip assign mode while i installed the Solaris 10(U 8). But i can't access the internet, i try the ifconfig -a command and see my configuration is correct in the interface. So i want to get my ip using dhcp. I search from internet. They give me the suggestions. ifconfig interface... (1 Reply)
Discussion started by: papertiger
1 Replies

7. Programming

How to read the CTS and DSR of RS232 in Unix using C language?

Hello to all Gurus out there, Could you show me a source code in Unix platform using C language. I want to read the status or voltage level of the DSR and CTS. Thanks a lot, Swing5 (2 Replies)
Discussion started by: Swing5
2 Replies

8. Shell Programming and Scripting

configure php with mcrypt support

output of uname -a: Linux XXXXX 2.6.9-5.ELsmp #1 SMP Wed Jan 5 19:30:39 EST 2005 i686 i686 i386 GNU/Linux i'm trying to configure php with mcrypt support. output is below: ./configure --with-apxs2=/usr/local/apache/bin/apxs \ --with-mysql=/usr/lib/mysql3/mysql/mysql_config \... (1 Reply)
Discussion started by: pupp
1 Replies

9. AIX

How to configure a FC HBA in "initiator mode"?

Hi all, I have a p520 machine running 5.2ML9 with a 2Gb FC HBA from IBM, i.e. # lscfg -vl fcs0 fcs0 U787A.001.DNZ06YM-P1-C3-T1 FC Adapter Part Number.................80P4543 EC Level....................A Serial Number...............1F4270A0B6 ... (5 Replies)
Discussion started by: Bookie
5 Replies

10. Programming

How to set the DSR pin using a C Code

Hi, I am a newbie using linux. I want to use the 9 pins of the COM port for data transmission. I am trying to write a code to toggle the DTR pin in /dev/ttyS0. Can any one help by giving a sample code or links that will help me pick up fast Regards (2 Replies)
Discussion started by: Srikanthks_2000
2 Replies
Login or Register to Ask a Question
Mail::SPF(3)						User Contributed Perl Documentation					      Mail::SPF(3)

NAME
Mail::SPF - An object-oriented implementation of Sender Policy Framework VERSION
2.009 SYNOPSIS
use Mail::SPF; my $spf_server = Mail::SPF::Server->new(); my $request = Mail::SPF::Request->new( versions => [1, 2], # optional scope => 'mfrom', # or 'helo', 'pra' identity => 'fred@example.com', ip_address => '192.168.0.1', helo_identity => 'mta.example.com' # optional, # for %{h} macro expansion ); my $result = $spf_server->process($request); print("$result "); my $result_code = $result->code; # 'pass', 'fail', etc. my $local_exp = $result->local_explanation; my $authority_exp = $result->authority_explanation if $result->is_code('fail'); my $spf_header = $result->received_spf_header; DESCRIPTION
Mail::SPF is an object-oriented implementation of Sender Policy Framework (SPF). See <http://www.openspf.org> for more information about SPF. This class collection aims to fully conform to the SPF specification (RFC 4408) so as to serve both as a production quality SPF implementation and as a reference for other developers of SPF implementations. SEE ALSO
Mail::SPF::Server, Mail::SPF::Request, Mail::SPF::Result For availability, support, and license information, see the README file included with Mail::SPF. REFERENCES
The SPF project <http://www.openspf.org> The SPFv1 specification (RFC 4408) <http://www.openspf.org/Specifications>, <http://tools.ietf.org/html/rfc4408> AUTHORS
Julian Mehnle <julian@mehnle.net>, Shevek <cpan@anarres.org> perl v5.18.2 2017-10-06 Mail::SPF(3)