Sponsored Content
Top Forums Shell Programming and Scripting How to check the IP:PORT firewall uses? Post 303004021 by Corona688 on Monday 25th of September 2017 11:19:14 AM
Old 09-25-2017
Quote:
Originally Posted by mohtashims
1. I thought every running process including firewall process has to have a socket [IP Port] associated with it.
Nope. Not at all.
 

10 More Discussions You Might Find Interesting

1. IP Networking

how can i check if port is busy or if someone is using it ?

Hello i have application that using ports , how can i check if the port im using is not captured by any applications? (1 Reply)
Discussion started by: umen
1 Replies

2. Solaris

How to open SSH port on firewall?

Hi, So that potential responders will have an idea of what they're dealing with let me say that while I am a UNIX newbie I have been in IT for over 10 years. We have several SUN boxes running ver 5 of the OS that have been sitting dormant for some time as they were part of a now defunct... (3 Replies)
Discussion started by: pjewett
3 Replies

3. Linux

can ping without firewall; no port 631

Well, since I wrote the below, I've learned a little more about Samba, and got them to at least acknowledge each other. Still can't use Gaurd dog. Still cant print from one to the other. I'm learning I'm learning I recently installed mepis 7 on both my laptop and laptop. (I came... (0 Replies)
Discussion started by: Sonshyne5
0 Replies

4. Linux

using firewall to block port

Hi, I will like to allow access to the mysql port (3306) to certain IP address. All other IP's should be automatically blocked. What is the best way to do this? (8 Replies)
Discussion started by: shantanuo
8 Replies

5. UNIX for Dummies Questions & Answers

How do you check whether a port currently being used?

Hi, Please help me out, how to check whether a port currently being used or not. is there any command which give the result? Thanks Rajesh (6 Replies)
Discussion started by: rajesh08
6 Replies

6. IP Networking

Is there any way to add an exception for a port in the firewall setting, permanently?

Hello, I want to add a port in the firewall exception list so that my application can be accessed over network even if firewall is disabled. I am using iptables command to add exception. The problem is, after setting the rule if I change the firewall setting i.e. on/off then it is overwriting... (1 Reply)
Discussion started by: senrooy
1 Replies

7. Shell Programming and Scripting

Firewall Check Script

Hello, I made a following script that check every 5 minutes to check firewall is running or not, if firewall down that raise an alert only once, but following script generate an alert every 5 minutes according to cronjob: FILE="/var/log/fwstatus" CHK="/tmp/fwstatus" service... (1 Reply)
Discussion started by: telnor
1 Replies

8. UNIX for Dummies Questions & Answers

Rsync port and firewall

hi guys I doing some collocation for a customer, customer requested to use other port for ssh not the default one. OK no problem and customer will be using rsync to sync backups among other things I know we have to open port let's say port 5999 for ssh since we are using that one now but I... (1 Reply)
Discussion started by: karlochacon
1 Replies

9. Shell Programming and Scripting

Good way to check firewall port on Linux centos 7

Hi, I need to know what kind of firewall settings does the linux box have? Is port 25 blocked in any way? Linux techx 3.10.0-514.10.2.el7.x86_64 #1 SMP Fri Mar 3 00:04:05 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux I'm coming from this thread. (1 Reply)
Discussion started by: mohtashims
1 Replies

10. Shell Programming and Scripting

Unable to open firewall port for external traffic.

Below is what i did to open the firewall port on # sudo firewall-cmd --zone=public --add-port=27012/tcp --permanent Warning: ALREADY_ENABLED: 27012:tcp success # sudo firewall-cmd --reload success # firewall-cmd --list-all public target: default icmp-block-inversion: no ... (10 Replies)
Discussion started by: mohtashims
10 Replies
snmpm_network_interface(3erl)				     Erlang Module Definition				     snmpm_network_interface(3erl)

NAME
snmpm_network_interface - Behaviour module for the SNMP manager network interface. DESCRIPTION
This module defines the behaviour of the manager network interface. A snmpm_network_interface compliant module must export the following functions: * start_link/2 * stop/1 * send_pdu/7 * inform_response/4 * note_store/2 * info/1 * get_log_type/1 * set_log_type/2 * verbosity/2 The semantics of them and their exact signatures are explained below. EXPORTS
start_link(Server, NoteStore) -> {ok, Pid} | {error, Reason} Types Server = pid() NoteStore = pid() Start-link the network interface process. Server is the pid of the managing process. NoteStore is the pid of the note-store process. stop(Pid) -> void() Types Pid = pid() Stop the network interface process. send_pdu(Pid, Pdu, Vsn, MsgData, Addr, Port, ExtraInfo) -> void() Types Pid = pid() Pdu = pdu() Vsn = 'version-1' | 'version-2' | 'version-3' MsgData = term() Addr = address() Port = integer() ExtraInfo = term() Request the network interface process ( Pid ) to send this pdu ( Pdu ). ExtraInfo is some opaque data that is passed to the net-if process. It originates from the ExtraInfo parameter in the calls to the synchronous get-request , asynchronous get-request , synchronous get-next-request , asynchronous get-next-request , synchronous set- request and asynchronous set-request functions. Whether the net-if process chooses to use this is implementation dependent. The net- if process included in this application ignores it. inform_response(Pid, Ref, Addr, Port) -> void() Types Pid = pid() Ref = term() Addr = address() Port = integer() Instruct the network interface process to send the response (acknowledgment) to an inform-request. Ref is something that can be used to identify the inform-request, e.g. request-id of the inform-request. Addr and Port identifies the agent, from which the inform-request originated. note_store(Pid, NoteStore) -> void() Types Pid = pid() NoteStore = pid() Change the pid of the note-store process. This is used when the server re-starts the note_store (e.g. after a crach). info(Pid) -> [{Key, Value}] Types Pid = pid() The info returned is basically up to the implementer to decide. The implementation provided by this application provides info about memory allocation and various socket information. The info returned by this function is returned together with other info collected by the manager when the info function is called (tagged with the key net_if ). verbosity(Pid, Verbosity) -> void() Types Pid = pid() Verbosity = verbosity() Change the verbosity of the network interface process. get_log_type(Pid) -> {ok, LogType} | {error, Reason} Types Pid = pid() LogType = atl_type() Reason = term() The Audit Trail Log is managed by the network interface process. So, it is this process that has to return the actual log-type. set_log_type(Pid, NewType) -> {ok, OldType} | {error, Reason} Types Pid = pid() NewType = OldType = atl_type() Reason = term() The Audit Trail Log is managed by the network interface process. So, it is this process that has to do the actual changing of the type. See set_log_type for more info. Ericsson AB snmp 4.19 snmpm_network_interface(3erl)
All times are GMT -4. The time now is 01:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy