search for: serverport

Displaying 20 results from an estimated 21 matches for "serverport".

2004 Oct 20
1
throttle particular client ip
...]-eth0----------internet I have used the technique provided by smueller@chronox.de and his limit.conn-0.2 perl script, which basically does the following: iptables --append PREROUTING --in-interface eth0 --table mangle \ --protocol tcp --source $SERVERIP \ --source-port $SERVERPORT --jump MARK --set-mark 0x1 tc qdisc add dev eth0 handle ffff: ingress tc filter add dev eth0 parent ffff: protocol ip prio 50 handle \ 0x1 fw police rate 1kbit burst 1500 mtu 9k drop flowid :0x1 This works great! But all clients on the lan side are throttled for what ever $SERVERIP and $...
2007 May 28
3
Where to find RHDS (Red Hat Directory Server) ?
Hi! In the release notes it is said RHDS will replace OpenLDAP. However, I can only find OpenLDAP in CentOS5. I tried to google the web but it returned nothing useful. Does anyone know about this? Thanks. Regards, Wei Yu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20070528/822fe713/attachment.html>
2004 Jun 18
1
Rsync, Cygwin, & SSH: ntsec OR nontsec?
...s/ set LOG_FILE=/cygdrive/c/%INST_DIR%/home_rsync.log set BKUP_BKUP_DIR=backup_backups/ rem ------------------- The commands. date /T > c:\rsync_backup\home_rsync.log rem Following is on one line rsync -auvzbpt --partial --modify-window=5 --backup-dir=%BKUP_BKUP_DIR% --rsh="ssh -p <serverPort> -i /cygdrive/c/%INST_DIR%/.ssh/id_rsync -l %USER%" --log-format="%%t [%%p] <recv<%USER_IP%<%USER%<%%f<%%l<%%b" %BKUP_SRC% %USER%@%REMOTE%:%BKUP_DEST% >>c:\rsync_backup\home_rsync.log rem On one line rsync -Wvv --rsh="ssh -p <serverPort>...
2010 Apr 15
1
[PATCH matahari] Refactored the Host agent.
...**argv) +int +main(int argc, char **argv) { int arg; int idx = 0; bool daemonize = false; bool gssapi = false; bool verbose = false; - char *host = NULL; + char *servername = NULL; char *username = NULL; char *service = NULL; - int port = 5672; + int serverport = 5672; ConnectionSettings settings; ManagementAgent *agent; - HostWrapper *hostWrapper; + HostAgent host; struct option opt[] = { {"help", no_argument, NULL, 'h'}, @@ -131,7 +125,7 @@ int do_main(int argc, char **argv) break;...
2010 Aug 10
4
Certificat Outlook 2003
Hi, next problem with outlook 2003 On the IMAP Server (dovecot.x86_64 1.0.7-7.el5) I created a certificate with "mkcert_dovecot.sh". Some entries as be written to "/etc/pki/dovecot/dovecot-openssl.cnf". plaintext paswords are disables. IMAP Serverport: 993 Server needs SSL Now the outlook 2003 clients meens "the server uses a security certificate, which could not be verified" I can only click on "yes" or "no" On the thunderbird clients, I can use "use this certificate temporary " OR "use this cert...
2012 Jan 22
5
Augeas lens for zabbix agent config files?
...List of comma delimited IP addresses (or hostnames) of ZABBIX servers. # No spaces allowed. First entry is used for sending active checks. # Note that hostnames must resolve hostname->IP address and # IP address->hostname. Server=backend.yomamma.com # Server port for sending active checks #ServerPort=10051 # Unique hostname. Required for active checks. === And the augeas output (all empty): == [/etc/puppet] # augparse /usr/share/augeas/lenses/contrib/zabbix_agent.aug [/etc/puppet] # augtool -e ls /files/etc/zabbix/zabbix_agentd.conf == Any help would be sincerely appreciated :) cheers, --...
2013 May 08
2
[Bug 2099] New: SshClient.connect() failure on port 22
....SftpClient; import com.sshtools.j2ssh.SshClient; import com.sshtools.j2ssh.authentication.PasswordAuthenticationClient; import com.sshtools.j2ssh.configuration.ConfigurationLoader; import java.io.PrintStream; public class fileTransfer { public static boolean connectToServer(String serverIp, int serverPort, String userId, String password) { SshClient sfc = null; try { System.out.println("inside Try of as its SFTP"); ConfigurationLoader.initialize(false); System.out.println("ConfigurationLoader"); sfc = new SshClient(); sfc.connect(serverIp,...
2013 Jul 04
2
DOVECOT 2.2.4 = 501 5.5.4 Unsupported options in LMTP
...*********** dspam-3.9.0 (dspam-3.10.2 all the time segmentation fault) dspam.conf .................... # DeliveryHost /var/run/dovecot/lmtp # same error as IP DeliveryHost 127.0.0.33 DeliveryPort 24 DeliveryProto LMTP .................... ServerHost 192.168.1.34 ServerPort 24 ServerQueueSize 32 ServerPID /var/run/dspam/dspam.pid *************************************************** dovecot-2.2.4 10-master.conf service lmtp { # Create inet listener only if you can't use the above UNIX socket inet_listener lmtp { # Avoid making LMTP v...
2003 Mar 23
12
Shorewall 1.4.1
This is a minor release of Shorewall. WARNING: This release introduces incompatibilities with prior releases. See http://www.shorewall.net/upgrade_issues.htm. Changes are: a) There is now a new NONE policy specifiable in /etc/shorewall/policy. This policy will cause Shorewall to assume that there will never be any traffic between the source and destination zones. b) Shorewall no longer
2004 Aug 06
1
[PATCH] IceCast2 - aliasing (reimplementation of the patch I posted earlier)
...versock, ip, MAX_ADDR_LEN); if (sock >= 0) { - con = create_connection(sock, ip); + con = create_connection(sock, serversock, ip); return con; } @@ -648,6 +649,10 @@ int fileserve; char *host; int port; + int i; + char *serverhost; + int serverport; + aliases *alias; ice_config_t *config; int client_limit; @@ -655,6 +660,14 @@ fileserve = config->fileserve; host = config->hostname; port = config->port; + for(i = 0; i < MAX_LISTEN_SOCKETS; i++) { + if(global.serversock[i] == con->serversoc...
2008 Aug 22
0
Enhance Match Blocks to Test Server Port.
...the only way to do this is to run two sshds, one per port. Since Match blocks already allow PasswordAuthentication to be set, if the Match keyword itself allowed testing of the server port to which the incoming connection was made then we could do PasswordAuthentication no ... Match ServerPort 2222 PasswordAuthentication yes Does this sound plausible? Would you consider it as an enhancement? Should I open a bug accordingly for the work to be done against? Cheers, Ralph. [I'm not subscribed, so please CC me.]
2009 Sep 28
1
dovecot & dspam
...axes 30 # Tokens with less than 5 hits (hapaxes) PurgeHits1S 15 # Tokens with only 1 spam hit PurgeHits1I 15 # Tokens with only 1 innocent hit LocalMX 127.0.0.1 SystemLog on UserLog on opt out ParseToHeaders on ChangeModeOnParse on ChangeUserOnParse full ServerPort 2424 ServerPID /var/run/dspam/dspam.pid ServerMode standard ServerParameters "--deliver=innocent" ServerIdent "localhost.localdomain" ProcessorBias on Include /etc/dspam/dspam.d/ Any Idea??? Thanks
2000 Oct 30
2
RhostsAuthentication + nondefault port doesn't work?
Hello all, It seems that RhostsAuthentication does not work on non-default port no matter what when connecting from OpenSSH (2.1.1, 2.2.0 tried) either with protocol 1 or protocol 2 (shouldn't work either..). _However_ when connecting with SSH.COM Ltd's ssh, RhostsAuthentication works just fine! Checking the port number of ssh client you can see that OpenSSH doesn't assign
2018 Dec 03
2
vacation script issue
Hello, I have a complete Postfix + Dovecot + openLDAP setup almost working, the only issue I have is the vacation script auto-reply that doesn't work properly. If I send an email to a user with the vacation filter enabled, the auto-reply is send to a local recipient with the same account name. So for example if I send a mail from test at xyz.com to test at example.com, the auto-reply is
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
..."[DEBUG] %s\n" "$*"; fi } + +trap '__st=$?; cleanup; exit $__st' 1 2 3 13 15 +trap 'cleanup' 0 + +cleanup () { + if ! $preserve; then + debug "Cleaning up" + rm -rf $WORKDIR + fi +} + +hostname=$(hostname) + +servername="" +serverport="" +identifier=$hostname +verbose=false +debugging=false +preserve=false +keytab_file=$NODE_KEYTAB_FILE +awake_endpoint=$NODE_AWAKE_ENDPOINT + +usage () { +cat <<EOF +Usage: $ME -s SERVERNAME -p PORT [-i IDENTIFIER] [-k KEYTAB] [-v] [-d] [-h] + -s: sets the servername of the manage...
2014 Jun 24
1
Bug/feature: mail fs pollution on IMAP select namespace/{non-existent}
...hosts the shared folder for the users (prefix Accounts/%%n/). However, When I issue an IMAP select command on a random non-existent mailbox name under "Accounts", dovecot auto-creates it and pollutes my mail root directory: Python test code snippet: imapConn=imaplib.IMAP4_SSL(serverIP, serverPort) imapConn.login(serverLogin, serverPass) print imapConn.select("Accounts/NonExistentMailbox") imapConn.logout() Resulting in this: drwxr-x--- 1 vmail vmail 4096 Jun 12 10:00 _attachments_ >>> drwx------ 1 vmail vmail 4096 Jun 24 14:27 NonExistentMailbox <<< drwxr-x---...
2007 May 14
17
[ANNOUNCE] virtbench now has xen support
Hi all, I've been working on a set of easy-to-run benchmarks for hypervisor optimization called virtbench, and the latest commit adds Xen support. http://ozlabs.org/~rusty/virtbench http://ozlabs.org/~rusty/virtbench/?archive/tip.tar.bz2 >From the README: # Build the code make # Set the guest kernel location and maybe more vi ./SETTINGS # Run the benchmark (local mode)
2007 May 14
17
[ANNOUNCE] virtbench now has xen support
Hi all, I've been working on a set of easy-to-run benchmarks for hypervisor optimization called virtbench, and the latest commit adds Xen support. http://ozlabs.org/~rusty/virtbench http://ozlabs.org/~rusty/virtbench/?archive/tip.tar.bz2 >From the README: # Build the code make # Set the guest kernel location and maybe more vi ./SETTINGS # Run the benchmark (local mode)
2007 May 14
17
[ANNOUNCE] virtbench now has xen support
Hi all, I've been working on a set of easy-to-run benchmarks for hypervisor optimization called virtbench, and the latest commit adds Xen support. http://ozlabs.org/~rusty/virtbench http://ozlabs.org/~rusty/virtbench/?archive/tip.tar.bz2 >From the README: # Build the code make # Set the guest kernel location and maybe more vi ./SETTINGS # Run the benchmark (local mode)
2012 Jun 08
0
Wine release 1.5.6
...winspool: Change get_dword_from_reg to accept a unicode value name. Jacek Caban (37): urlhist.idl: Added missing flags. wininet: Handle error flags only for masked-error mode. wininet: Fixed grouping security error flags. wininet: Get rid of no longer used serverName and serverPort from http_session_t. port.h: Added NAN macro. jscript: Get rid of ret_nan hack. jscript: Get rid of num_set_nan hack. mshtml: Fixed Exec_ShellDocView_84 tests. jscript: Added missing port.h include to lex.c. wininet: Use CRLF separator in INTERNET_CERTIFICATE_INF...