SSH logs off and Client pptp goes off as well


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers SSH logs off and Client pptp goes off as well
# 1  
Old 11-19-2006
SSH logs off and Client pptp goes off as well

Hi ,
I am a newbie to unix,linux i have a fedora core 4 linux. I had set it up as a pptp vpn client to a windows pptp server. Everything was working fine. Recently i saw that there were many attempts to hack into the root login using ssh. so i changed the ssh port,the ssh portocol to 2. And changed the root password.

O now notice that the putty ssh session logs me off after a certain period of inactivity,while earlier it didnt. The same goes with the pptp client on the fedora. it disconnects from time to time.

I dont want the ssh to log me off or the pptp connection to go off. Please help what could this issue be.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

What SSH Client do you Use?

Most of you probably use PuTTy, but I was wondering if there were any other good alternatives. So, what SSH client do you use? (2 Replies)
Discussion started by: erich76
2 Replies

2. HP-UX

Suppress SSH login logs of a user

Hi, I want to suppress ssh login logs of a particular user to get logged in /var/adm/syslog/syslog.log As am using a user to monitor a server over ssh in 5 miute interval..and that creating un-necessary logs in my syslog.log file .. Please help me if there any way I can suppress this logs only... (6 Replies)
Discussion started by: Shirishlnx
6 Replies

3. Solaris

SSH Client

Hi Gurus, I need an SSH client to connect to a Solaris server from windows and run a few scripts. I am able to put/pull files using "psftp" using below command: psftp -l <username> -pw <password> <hostname> -b <batchfile> However i am unable to find an equivalent for ssh. I tried... (3 Replies)
Discussion started by: Hari_Ganesh
3 Replies

4. Shell Programming and Scripting

Email alerts whenever someone logs into server via SSH any user?

Hi all, Thanks in Advance!! I dont know how to start to write script for this process, my requirement is if any user logs into server automatically Admin get mail alert. how is this possible? any one guide me to complete this process. (1 Reply)
Discussion started by: anishkumarv
1 Replies

5. Linux

telnet client and logs

Hello everyone. I have a script that telnets into a linux workstation and restarts a service, while logging the session to a file. I'm kind of new to linux so when I was using windows I would capture something like windows cli: telnet xxx.xxx.xxx.xxx -f c:/capture.log ... # /sbin/service... (3 Replies)
Discussion started by: Elyas_cr
3 Replies

6. Linux

ssh ip logs

Hi All, Where can I find the ssh logs the list of IPs connected (or failed) to the server? Or I need to enable that on openssh? Where? Right now, I can only see failed login on /var/log/messages like below Feb 5 17:30:12 localhost pam_tally: pam_tally: pam_get_uid; no such user admin... (3 Replies)
Discussion started by: itik
3 Replies

7. UNIX and Linux Applications

Secure FTP Client that Logs well

Folks I am on a quest.... I am looking for a lightweight FTP client capable of FTPS and or SFTP that has good audit and logging capabilities without requiring a central server component. My platforms are Linux, Solaris, AIX, and Windows Server. The kicker is I have found things that meet the... (3 Replies)
Discussion started by: ArtF
3 Replies

8. Linux

viewing ftp client logs

Hi All Is there any linux log file that captures invalid ftp login attempts in client side? I'm trying to come up with a script that will send an email to owners stating the number of invalid password login attempt when logging in to the ftp server. its like, 1. i'm in client side...then... (2 Replies)
Discussion started by: 3rr0r_3rr0r
2 Replies

9. UNIX for Dummies Questions & Answers

SSH client

How can I use ssh client with proxy support? If possible: with proxy chain support. :) (2 Replies)
Discussion started by: zylwyz
2 Replies

10. Cybersecurity

What's the difference between an SSH Client and an SSH Server?

Eh... yeah. What the title says. :D (1 Reply)
Discussion started by: PSC
1 Replies
Login or Register to Ask a Question
cflow(1)						      General Commands Manual							  cflow(1)

NAME
cflow - Generates a C language flow graph of external references SYNOPSIS
cflow [-r] [-d number] [-D name[=def]]... [-i incl] [-I dir]... [-U dir]... [-MA] [-Ndnumber] [-Nlnumber] [-Nnnumber] [-Ntnumber] file... The token -- (double-dash) is accepted as a delimiter indicating the end of options. Any following arguments are treated as operands, even if they begin with the - character. STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: cflow: XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
Indicates the depth at which the flow graph is cut off. The argument number is a decimal integer. By default this is a very large number. Attempts to set the cut-off depth to a nonpositive integer are ignored. Defines name, as if by a C-language #define directive. If no =def is given, a value of 1 is used. Changes the number of included symbols. The incl parameter is one of the following characters: (Under- score). Includes names that begin with an underscore character. By default, these functions are excluded (and corresponding data if -i x is used). [Tru64 UNIX] Disables ANSI function prototypes. By default, undefined function information is filled in with available proto- type declarations. Includes external and static data symbols. By default, only functions are included. Adds the directory specified by dir to the list of directories in which the lint program searches for #include files. [Tru64 UNIX] Specifies that the first pass of the modified lint command is operated in ANSI mode. The default mode of operation is extended mode. [Tru64 UNIX] Changes the dimension table size to number. The default value of number is 2000. [Tru64 UNIX] Changes the number of type nodes to number. The default value of number is 8000. [Tru64 UNIX] Changes the symbol table size to number. The default value of number is 1500. [Tru64 UNIX] Changes the number of tree nodes to number. The default value of number is 1000. Produces an inverted listing that shows the callers of each function, sorted by called function. Removes any initial definition of name, where name is a reserved symbol that is predefined by the particular preproces- sor. DESCRIPTION
The cflow command analyzes a collection of object files or assembler, C-language, lex, or yacc source files, and attempts to write a chart of their external references to standard output. Files suffixed in are processed by lex and yacc and preprocessed by the compiler preprocessor phase (bypassed for files) as appropriate. The output is then run through a modified first pass of lint. Files suffixed with are assembled and information is extracted (as in files) from the symbol table. From this output, cflow() writes a flow graph to standard output. Each line of output provides the following information (in order from left to right): A line number followed by sufficient tabs to indicate the level of nesting The name of the global, a colon, and its defini- tion The name is normally a function not defined as external and not beginning with an underline character (see the -i _ and -i x inclusion options). For information extracted from C source files, the definition consists of an abstract type declaration (for example, char*), the name of the source file surrounded by angle brackets, and the line number on which the definition was found. Definitions extracted from object files contain the filename and section under which the symbol appeared, such as text or data. The cflow command deletes leading underline characters in C-style external names. Once the cflow command displays a name, later references to the name contain only the cflow line number where the definition can be found. For undefined references, cflow displays only <> (angled brackets). If the nesting level becomes too deep to display in available space, pipe the output from the cflow command to the pr command using the -e option to compress the tab expansion to less than eight spaces per tab stop. To ensure that the line numbers produced by cflow match your lex and yacc files, you must send the or file to the cflow command. EXAMPLES
Given the following in file.c: int i; main() { f(); g(); f(); } f() { i = h(); } the command: cflow -i x file.c produces the following output: 1 main: () int, <file.c 4> 2 f: () int, <file.c 11> 3 h: <> 4 i: int, <file.c 1> 5 g: <> To generate a default flow graph of these C files that comprise a program, enter: cflow timeout.c kill.c error.c To produce a C flow graph with a single level of nesting of functions, enter: cflow -d1 resam.c pptp.c ptpt.c rrr.c whn.c To generate a cflow graph of a lex program, enter: cflow scan.l To generate a cflow graph of a yacc program, enter: cflow yaccfile.y To generate an inverted listing that shows the callers of each of the functions in the C files used in the previous examples, enter: cflow -r resam.c pptp.c ptpt.c rrr.c whn.c ENVIRONMENT VARIABLES
The following environment variables affect the behavior of cflow: Provides a default value for the locale category variables that are not set or null. If set, overrides the values of all other locale variables. Determines the order in which output is sorted for the -r option. Determines the locale for the interpretation of byte sequences as characters (single-byte or multibyte) in input parameters and files. Determines the locale used to affect the format and contents of diagnostic messages displayed by the command. Determines the loca- tion of message catalogs for processing of LC_MESSAGES. SEE ALSO
Commands: lex(1), lint(1), nm(1), pr(1), yacc(1) Standards: standards(5) cflow(1)