Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C56EB200B97 for ; Sun, 9 Oct 2016 17:59:54 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C3FCB160ADA; Sun, 9 Oct 2016 15:59:54 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 37ACA160AD6 for ; Sun, 9 Oct 2016 17:59:54 +0200 (CEST) Received: (qmail 61992 invoked by uid 500); 9 Oct 2016 15:59:53 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Delivered-To: moderator for users@activemq.apache.org Received: (qmail 77170 invoked by uid 99); 9 Oct 2016 01:11:28 -0000 X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 4.253 X-Spam-Level: **** X-Spam-Status: No, score=4.253 tagged_above=-999 required=6.31 tests=[DKIM_ADSP_CUSTOM_MED=0.001, FORGED_YAHOO_RCVD=1.022, NML_ADSP_CUSTOM_MED=1.2, RCVD_IN_DNSWL_NONE=-0.0001, SPF_NEUTRAL=0.652, URI_HEX=1.313, URI_TRY_3LD=0.065] autolearn=disabled Date: Sat, 8 Oct 2016 18:04:42 -0700 (PDT) From: dobby001 To: users@activemq.apache.org Message-ID: <1475975082830-4717699.post@n4.nabble.com> Subject: random udp port being opened MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit archived-at: Sun, 09 Oct 2016 15:59:55 -0000 Hello, On both the client and the server (where broker is started) I am seeing an udp port being opened. The port number is random each time. I am not figuring out why this udp port is being opened or which static code is opening it. Wondering whether anyone can throw some light on why this udp port is being opened and where it is used and if possible how to disable it. If some plugin is opening it, how to disable it. Really appreciate the comments. I am using broker in embedded mode and the clients to connect to it from either same system on different systems. I am using 5.13.1 version of ActiveMQ on Linux Centos systems 7.x. Code snippet for broker start part, if it helps... broker = new SslBrokerService(); broker.setPersistent(true); broker.setBrokerName("dobby"); broker.setUseJmx(false); broker.setPlugins(new BrokerPlugin[] { new IPAuthenticationPlugin(), new StatisticsBrokerPlugin() }); broker.setEnableStatistics(true); broker.addSslConnector("ssl://10.1.1.10:61617",.....) broker.start(); .... netstat -tulpen |grep 31197 # 31197 is the java pid which starts broker udp 0 0 0.0.0.0:48924 0.0.0.0:* 498 1236777544 31197/java The client side url is similar, ssl or failover .... Again, I see a udp port being opened here. Thanks. Chandra -- View this message in context: http://activemq.2283324.n4.nabble.com/random-udp-port-being-opened-tp4717699.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.