Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ssid(1) [debian man page]

SSID(1) 							  suckless-tools							   SSID(1)

NAME
ssid - simple setsid SYNOPSIS
ssid DESCRIPTION
ssid is an extremly simple setsid replacement. OPTIONS
ssid has no options. SEE ALSO
Homepage <http://www.suckless.org/> AUTHOR
ssid was written by Anselm R. Garbe <garbeam@gmail.com>. This manual page was written by Daniel Baumann <daniel@debian.org>, for the Debian project (but may be used by others). 0.1 2008-08-03 SSID(1)

Check Out this Related Man Page

STRUCT 
CFG80211_AP_S(9) Actions and configuration STRUCT CFG80211_AP_S(9) NAME
struct_cfg80211_ap_settings - AP configuration SYNOPSIS
struct cfg80211_ap_settings { struct cfg80211_chan_def chandef; struct cfg80211_beacon_data beacon; int beacon_interval; int dtim_period; const u8 * ssid; size_t ssid_len; enum nl80211_hidden_ssid hidden_ssid; struct cfg80211_crypto_settings crypto; bool privacy; enum nl80211_auth_type auth_type; int inactivity_timeout; u8 p2p_ctwindow; bool p2p_opp_ps; const struct cfg80211_acl_data * acl; bool radar_required; }; MEMBERS
chandef defines the channel to use beacon beacon data beacon_interval beacon interval dtim_period DTIM period ssid SSID to be used in the BSS (note: may be NULL if not provided from user space) ssid_len length of ssid hidden_ssid whether to hide the SSID in Beacon/Probe Response frames crypto crypto settings privacy the BSS uses privacy auth_type Authentication type (algorithm) inactivity_timeout time in seconds to determine station's inactivity. p2p_ctwindow P2P CT Window p2p_opp_ps P2P opportunistic PS acl ACL configuration used by the drivers which has support for MAC address based access control radar_required set if radar detection is required DESCRIPTION
Used to configure an AP interface. AUTHOR
Johannes Berg <johannes@sipsolutions.net> Author. COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 STRUCT CFG80211_AP_S(9)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

start process at assidned date and time

How can I start FTP at assigned DATE and TIME? (6 Replies)
Discussion started by: gd2003
6 Replies

2. Solaris

How to see actual filename that File Descriptor is pointing to for a given processID?

Using lsof command I was able to query all Regular Files opened for write. A specific processID related output shows some FileDescriptors(FD 45 in second output 45w) pointing to real file. But most of the FDs(1, 2, 5 in first output and 31,29,10 in second output) are pointing to root of the disk... (19 Replies)
Discussion started by: kchinnam
19 Replies

3. Emergency UNIX and Linux Support

losing ESSID

Hey guys, facing a weird issue - hoping someone might be able to help. The wireless network on my laptop is configured with a static IP address. (not using nm) When i take the laptop out of the range (or i power the router down) the essid is becoming "off/any". When i'm back in range the... (6 Replies)
Discussion started by: moshe88
6 Replies

4. Linux

Find a process ID,kill it and restart agent

#!/bin/bash #This shell finds the pid of the hawkagent and kills and restarts to put the rulebase into effect output=`ps aux|grep hawkagent` #The set -- below helps to parse the above ps output into words and $2 gives the 2nd word which is pid set -- $output pid=$2 #Checks if pid of hawkagent... (12 Replies)
Discussion started by: samrat dutta
12 Replies