Sponsored Content
Operating Systems Linux how to configure Linux for incomming connections Post 302070795 by dangral on Friday 7th of April 2006 12:18:53 PM
Old 04-07-2006
See if telnet is listening - look for a process listening on port 23.

Code:
netstat -an | grep LISTEN

 

10 More Discussions You Might Find Interesting

1. Cybersecurity

Unable to configure samba on linux 7.1

Hello I am able to connect from Linux machine to Windows machine, but i can not connect from Windows to Linux. Even i can print also from linux to windows... what could be the problem... pl help. thanks (5 Replies)
Discussion started by: twadkar
5 Replies

2. UNIX for Dummies Questions & Answers

how to configure modem in Linux

I have Linux RedHat7.1 and I have this modem RockWell HCF 56KDATA Fax PCI Modem. I don't know how to configure this modem. Can anybody please help me out. I tried "linuxconf" it does not recognize this command. Pleas help me out. Regards -Iftikhar (1 Reply)
Discussion started by: syedifti
1 Replies

3. UNIX for Dummies Questions & Answers

Incomming EmailAttachments

Hello, I have a requirement to accept incoming email attachements on my server to be saved off and processed into a database. I can find lots of information on sending attachments but nothing about handling incomming attachments. I need to be able to test for an attachment, ensure it's ascii and... (1 Reply)
Discussion started by: grhodes
1 Replies

4. Linux

how to configure linux AS4 as a router

Hi, anybody show me how to configure linux AS4 as a router. my linux server has 2 NICs, one connects to DSL modem (10.0.0.0/24) , and other one connects to private LAN (192.168.1.0/24). TIA Bong (2 Replies)
Discussion started by: bong02
2 Replies

5. Shell Programming and Scripting

configure User account in linux

Got the answer as it can be done using yast tool in SUSE linux (0 Replies)
Discussion started by: jambesh
0 Replies

6. UNIX for Advanced & Expert Users

How to configure sendmail in linux

Hi, I want to know how to configure emails in linux.First how to configure inside the firewall and second how to configure it outside the firewall? Regards, Rajesh (1 Reply)
Discussion started by: rajbal
1 Replies

7. Linux

How to configure Dhcp in linux?

Please let me know step by step, I am new to this configuration.... (2 Replies)
Discussion started by: dhineshcs
2 Replies

8. Linux

Configure SMTP service in linux 5.2

Hi All, How to configure SMTP service in linux 5.2? Please provide me the steps. Thanks Jack (5 Replies)
Discussion started by: jack00423
5 Replies

9. IP Networking

Question about blocking incomming traffic

Hello, Like many others, I have continued to get attempts to connect to my local net router from the Asia Pacific Network Information Centre and from RIPE Network Coordination Centre, Amsterdam. I would say that 90% of attempted connections come from these two locations. The originating IP... (5 Replies)
Discussion started by: LMHmedchem
5 Replies

10. Linux

How to configure FTPS service on Linux 7.2?

Hey Guys, I need to know , how to configure the FTPS service on Linux 7.2 OS. Please advise. Thanks (0 Replies)
Discussion started by: anil1000
0 Replies
UNLISTEN(7)						  PostgreSQL 9.2.7 Documentation					       UNLISTEN(7)

NAME
UNLISTEN - stop listening for a notification SYNOPSIS
UNLISTEN { channel | * } DESCRIPTION
UNLISTEN is used to remove an existing registration for NOTIFY events. UNLISTEN cancels any existing registration of the current PostgreSQL session as a listener on the notification channel named channel. The special wildcard * cancels all listener registrations for the current session. NOTIFY(7) contains a more extensive discussion of the use of LISTEN and NOTIFY. PARAMETERS
channel Name of a notification channel (any identifier). * All current listen registrations for this session are cleared. NOTES
You can unlisten something you were not listening for; no warning or error will appear. At the end of each session, UNLISTEN * is automatically executed. A transaction that has executed UNLISTEN cannot be prepared for two-phase commit. EXAMPLES
To make a registration: LISTEN virtual; NOTIFY virtual; Asynchronous notification "virtual" received from server process with PID 8448. Once UNLISTEN has been executed, further NOTIFY messages will be ignored: UNLISTEN virtual; NOTIFY virtual; -- no NOTIFY event is received COMPATIBILITY
There is no UNLISTEN command in the SQL standard. SEE ALSO
LISTEN(7), NOTIFY(7) PostgreSQL 9.2.7 2014-02-17 UNLISTEN(7)
All times are GMT -4. The time now is 03:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy