Exporting Tree AD Groups with members to csv
Exporting Tree AD Groups with members to csv
Print on the screen:
$group = @{ filter = "GroupCategory -eq 'security'" SearchBase = "OU=Security Groups,DC=Domainname,DC=local" properties = "members" } get-adgroup @group | select @{n='GroupName';e={$_.samaccountname}}, @{n='Name';e={($_.members | get-adobject).name -join "`n"}}
Print to csv file - export.csv:
$group = @{ filter = "GroupCategory -eq 'security'" SearchBase = "OU=Group Name,DC=Domain,DC=Domain" properties = "members" } get-adgroup @group | select @{n='GroupName';e={$_.samaccountname}}, @{n='Name';e={($_.members | get-adobject).name -join "`n"}} | export-csv "export.csv" -notypeinformation -Force
With UTF-8:
$group = @{ filter = "GroupCategory -eq 'security'" SearchBase = "OU=Security Groups,DC=Domainname,DC=local" properties = "members" } get-adgroup @group | select @{n='GroupName';e={$_.samaccountname}}, @{n='Name';e={($_.members | get-adobject).name -join "`n"}} | export-csv "groupexport.csv" -notypeinformation -Force -Encoding UTF8
Backup & Restore a PostgreSQL Database
Backup & Restore a PostgreSQL Database
Postgres provides to 3 fundamentally different ways of backing up your database.
- SQL Dump
- File System Backup
- Continuous Archiving
SQL Dump
All commands should be run as the postgres user.
sudo su - postgres
The SQL dump (pg_dump) is a command that generates a text file that contains necessary SQL instruction that will recreate the database. The dumped file can be fed back to the server to recreate the existing structure of the database, including the data itself.
pg_dump dbname > dbbackupfilename.sql
The pg_dump command can be used to perform database backups from any remote host that you have access to.
It's important to understand that the command needs access to all tables that you want to backup so it should be initiated by a database user with superuser privilege.
If your are working with a large database it useful to gizip the file as you dump it. You can gizip the dump by running the following command instead. pg_dump dbname | gzip > dbbackupfilename.gz
Restore PostgreSQL pg_dump To restore the pg_dump file we make use of the psql command psql dbname < dbbackupfilename If you want to make sure that the database restoration stops incase of an error related you can set the ON_ERROR_STOP flag. psql --set ON_ERROR_STOP=on dbname < dbbackupfilename If you are handling a large database you might have gzipped the dump to minimize file-size and transfer time. To restore a gzipped pg_dump file you can run the following command. gunzip -c filename.gz | psql dbname
2: File System Backup In some cases the SQL dump is not optimal for your situation. Another useful way to backup PostgreSQL is to do a file system backup that directly copies all the file that PostgreSQL uses to store data in the database.
tar -cf dbbackupfilename.tar /usr/local/pgsql/data It's important to understand that the file system-level backup imposes extra restrictions when compared with the pg_dump method. file system backups require the database to be turned off in order to generate usable backups file system backups only work for complete backup and restoration of an entire database cluster.
--------
Basic backup and restore commands # Backup a single database pg_dump db_name > db_backup.sql # Restore a single database psql db_name < db_backup.sql # Backup an entire postgres database cluster pg_dumpall > cluster_backup.sql # Restore an entire postgres database cluster psql -f cluster_backup.sql postgres Backup and Restore using compression # Backup a single database pg_dump db_name | gzip > db_backup.gz # Restore a single database gunzip -c db_backup.gz | psql db_name # Backup a database cluster pg_dumpall | gzip > cluster_backup.gz # Restore a database cluster gunzip -c cluster_backup.gz | psql postgres Backup and be able to restore individual tables # Backup a single database pg_dump -Fc db_name > db_backup.dmp # Restore a single database pg_restore -d db_name db_backup.dmp # Can use pg_dumpall to backup all global information # then use pg_dump to backup each database pg_dumpall > global_only_backup.sql --globals-only Restore the database and stop on errors psql db_name < db_backup.sql --set ON_ERROR_STOP=on After restore, vacuum and analyze tables vacuumdb -a -z Basic Backup script #!/bin/bash # # Takes a full backup of the database and stores it in the backup folder # Run this script as the postgres user # DATE=`date +%Y-%m-%d` echo `date` - Delete old backups find ~/backup/* -mtime +1 -delete echo `date` - Do a full postgres cluster dump pg_dumpall | gzip > ~/backup/db_cluster_dump_$DATE.gz echo `date` - Sync pg_backups with S3 # /usr/local/bin/aws s3 sync ~/backup s3://bucket_name/backup echo `date` - Sync postgres configuration files with S3 # /usr/local/bin/aws s3 sync /etc/postgresql/9.3/main s3://bucket_name/backup echo `date` - Backup complete Schedule the script using cron # Make sure script is executable by postgres chmod 770 backup_script.sh crontab -e # m h dom mon dow command 0 4 * * * ~/backup_script.sh > ~/backup_script.log 2>&1
pg restore manual
pg restore manual:
pg_restore - restore a PostgreSQL database from an archive file created by pg_dump
pg_restore is a utility for restoring a PostgreSQL database from an archive created by pg_dump(1) in one of the non-plain-text formats. It will issue the commands necessary to reconstruct the database to the state it was in at the time it was saved.
pg_restore accepts the following command line arguments. filename Specifies the location of the archive file (or directory, for a directory-format archive) to be restored. If not specified, the standard input is used. -a, --data-only Restore only the data, not the schema (data definitions). Table data, large objects, and sequence values are restored, if present in the archive. This option is similar to, but for historical reasons not identical to, specifying --section=data. -c, --clean Clean (drop) database objects before recreating them. (This might generate some harmless error messages, if any objects were not present in the destination database.) -C, --create Create the database before restoring into it. If --clean is also specified, drop and recreate the target database before connecting to it. When this option is used, the database named with -d is used only to issue the initial DROP DATABASE and CREATE DATABASE commands. All data is restored into the database name that appears in the archive. -d dbname, --dbname=dbname Connect to database dbname and restore directly into the database. -e, --exit-on-error Exit if an error is encountered while sending SQL commands to the database. The default is to continue and to display a count of errors at the end of the restoration. -f filename, --file=filename Specify output file for generated script, or for the listing when used with -l. Default is the standard output. -F format, --format=format Specify format of the archive. It is not necessary to specify the format, since pg_restore will determine the format automatically. If specified, it can be one of the following: c, custom The archive is in the custom format of pg_dump. d, directory The archive is a directory archive. t, tar The archive is a tar archive. -i, --ignore-version A deprecated option that is now ignored. -I index, --index=index Restore definition of named index only. -j number-of-jobs, --jobs=number-of-jobs Run the most time-consuming parts of pg_restorethose which load data, create indexes, or create constraintsusing multiple concurrent jobs. This option can dramatically reduce the time to restore a large database to a server running on a multiprocessor machine. Each job is one process or one thread, depending on the operating system, and uses a separate connection to the server. The optimal value for this option depends on the hardware setup of the server, of the client, and of the network. Factors include the number of CPU cores and the disk setup. A good place to start is the number of CPU cores on the server, but values larger than that can also lead to faster restore times in many cases. Of course, values that are too high will lead to decreased performance because of thrashing. Only the custom and directory archive formats are supported with this option. The input must be a regular file or directory (not, for example, a pipe). This option is ignored when emitting a script rather than connecting directly to a database server. Also, multiple jobs cannot be used together with the option --single-transaction. -l, --list List the contents of the archive. The output of this operation can be used as input to the -L option. Note that if filtering switches such as -n or -t are used with -l, they will restrict the items listed. -L list-file, --use-list=list-file Restore only those archive elements that are listed in list-file, and restore them in the order they appear in the file. Note that if filtering switches such as -n or -t are used with -L, they will further restrict the items restored. list-file is normally created by editing the output of a previous -l operation. Lines can be moved or removed, and can also be commented out by placing a semicolon (;) at the start of the line. See below for examples. -n namespace, --schema=schema Restore only objects that are in the named schema. This can be combined with the -t option to restore just a specific table. -O, --no-owner Do not output commands to set ownership of objects to match the original database. By default, pg_restore issues ALTER OWNER or SET SESSION AUTHORIZATION statements to set ownership of created schema elements. These statements will fail unless the initial connection to the database is made by a superuser (or the same user that owns all of the objects in the script). With -O, any user name can be used for the initial connection, and this user will own all the created objects. -P function-name(argtype [, ...]), --function=function-name(argtype [, ...]) Restore the named function only. Be careful to spell the function name and arguments exactly as they appear in the dump file's table of contents. -R, --no-reconnect This option is obsolete but still accepted for backwards compatibility. -s, --schema-only Restore only the schema (data definitions), not data, to the extent that schema entries are present in the archive. This option is the inverse of --data-only. It is similar to, but for historical reasons not identical to, specifying --section=pre-data --section=post-data. (Do not confuse this with the --schema option, which uses the word “schema” in a different meaning.) -S username, --superuser=username Specify the superuser user name to use when disabling triggers. This is relevant only if --disable-triggers is used. -t table, --table=table Restore definition and/or data of named table only. Multiple tables may be specified with multiple -t switches. This can be combined with the -n option to specify a schema. -T trigger, --trigger=trigger Restore named trigger only. -v, --verbose Specifies verbose mode. -V, --version Print the pg_restore version and exit. -x, --no-privileges, --no-acl Prevent restoration of access privileges (grant/revoke commands). -1, --single-transaction Execute the restore as a single transaction (that is, wrap the emitted commands in BEGIN/COMMIT). This ensures that either all the commands complete successfully, or no changes are applied. This option implies --exit-on-error. --disable-triggers This option is relevant only when performing a data-only restore. It instructs pg_restore to execute commands to temporarily disable triggers on the target tables while the data is reloaded. Use this if you have referential integrity checks or other triggers on the tables that you do not want to invoke during data reload. Presently, the commands emitted for --disable-triggers must be done as superuser. So you should also specify a superuser name with -S or, preferably, run pg_restore as a PostgreSQL superuser. --no-data-for-failed-tables By default, table data is restored even if the creation command for the table failed (e.g., because it already exists). With this option, data for such a table is skipped. This behavior is useful if the target database already contains the desired table contents. For example, auxiliary tables for PostgreSQL extensions such as PostGIS might already be loaded in the target database; specifying this option prevents duplicate or obsolete data from being loaded into them. This option is effective only when restoring directly into a database, not when producing SQL script output. --no-security-labels Do not output commands to restore security labels, even if the archive contains them. --no-tablespaces Do not output commands to select tablespaces. With this option, all objects will be created in whichever tablespace is the default during restore. --section=sectionname Only restore the named section. The section name can be pre-data, data, or post-data. This option can be specified more than once to select multiple sections. The default is to restore all sections. The data section contains actual table data as well as large-object definitions. Post-data items consist of definitions of indexes, triggers, rules and constraints other than validated check constraints. Pre-data items consist of all other data definition items. --use-set-session-authorization Output SQL-standard SET SESSION AUTHORIZATION commands instead of ALTER OWNER commands to determine object ownership. This makes the dump more standards-compatible, but depending on the history of the objects in the dump, might not restore properly. -?, --help Show help about pg_restore command line arguments, and exit. pg_restore also accepts the following command line arguments for connection parameters: -h host, --host=host Specifies the host name of the machine on which the server is running. If the value begins with a slash, it is used as the directory for the Unix domain socket. The default is taken from the PGHOST environment variable, if set, else a Unix domain socket connection is attempted. -p port, --port=port Specifies the TCP port or local Unix domain socket file extension on which the server is listening for connections. Defaults to the PGPORT environment variable, if set, or a compiled-in default. -U username, --username=username User name to connect as. -w, --no-password Never issue a password prompt. If the server requires password authentication and a password is not available by other means such as a .pgpass file, the connection attempt will fail. This option can be useful in batch jobs and scripts where no user is present to enter a password. -W, --password Force pg_restore to prompt for a password before connecting to a database. This option is never essential, since pg_restore will automatically prompt for a password if the server demands password authentication. However, pg_restore will waste a connection attempt finding out that the server wants a password. In some cases it is worth typing -W to avoid the extra connection attempt. --role=rolename Specifies a role name to be used to perform the restore. This option causes pg_restore to issue a SET ROLErolename command after connecting to the database. It is useful when the authenticated user (specified by -U) lacks privileges needed by pg_restore, but can switch to a role with the required rights. Some installations have a policy against logging in directly as a superuser, and use of this option allows restores to be performed without violating the policy.
EXAMPLES
Assume we have dumped a database called mydb into a custom-format dump file: $ pg_dump -Fc mydb > db.dump To drop the database and recreate it from the dump: $ dropdb mydb $ pg_restore -C -d postgres db.dump The database named in the -d switch can be any database existing in the cluster; pg_restore only uses it to issue the CREATE DATABASE command for mydb. With -C, data is always restored into the database name that appears in the dump file. To reload the dump into a new database called newdb: $ createdb -T template0 newdb $ pg_restore -d newdb db.dump Notice we don't use -C, and instead connect directly to the database to be restored into. Also note that we clone the new database from template0 not template1, to ensure it is initially empty. To reorder database items, it is first necessary to dump the table of contents of the archive: $ pg_restore -l db.dump > db.list
1. Restore a database with psql command Recently, one of our customers approached us to restore the Postgres database from files. His database backup was a plaintext file containing SQL scripts. For restoring, our Support Engineers run the psql command. psql -U user_db user_name < dump_db.sql Here, user_db and user_name are the database user and database name respectively. And, dump_db.sql is the name of the backup file. This command effectively restored the Postgres database from files. 2. Restore a database with pg_restore command Similarly, another method to restore the Postgres database is using the pg_restore command. If the backup file created by pg_dump is of custom, directory or archive format, we use the command. pg_restore -d user_db /path/to/your/file/dump_db.tar -c -U user_name Here, -c prompts to drop the database before recreating it. By default, pg_restore has various options similar to this.
Router Draytek
Devices
Article from - DrayTek - WikiDevi.Wi-Cat.RU
Wireless routers
Device | Type | PHY modes | CPU1 | FLA1 | RAM1 | WI1 | WI2 | Switch | Ether. | Expan. | Ports | FCC date |
---|---|---|---|---|---|---|---|---|---|---|---|---|
DrayTek Vigor 2100G FCC ID: I4L-MS6833B has internal images |
wireless router | bg | Samsung S3C2510A 166 MHz |
2 MiB | 8 MiB | Ralink RT2561 ?x?:?, bg Ant. conn: RP-SMA Is a module |
IC+ IP175C |
100M 4x LAN 1x WAN |
Mini PCI | 2005-08-02 | ||
DrayTek Vigor 2110Vn | wireless router | bgn | Vitesse VSC7501 |
8 MiB | 64 MiB | Ralink RT2880F 2x3:3, bgn Ant. conn: RP-SMA Is a module |
Kendin KSZ8995XA |
100M 4x LAN 1x WAN |
Mini PCI
USB 2.0 |
1x USB | ||
DrayTek Vigor 2130n | wireless router | bgn N300 |
Vitesse VSC7501 |
8 MiB | 64 MiB | Ralink RT2880 2x3:3, bgn Ant. conn: RP-SMA Is a module |
Vitesse VSC7501 |
1GbE 4x LAN 1x WAN |
Mini PCI
USB 2.0 |
1x USB | ||
DrayTek Vigor 2132FVn FCC ID: VGYV2860VN |
wireless router
analog phone gateway |
bgn N300 |
Lantiq PSB 80920 500 MHz |
128 MiB | 64 MiB | Realtek RT5392L 2x2:2, bgn Ant. conn: RP-SMA |
Qualcomm Atheros QCA8337 |
1GbE 4x LAN 1x WAN |
USB 2.0
SFP |
2x USB | 2014-01-09 | |
DrayTek Vigor 2133FVac FCC ID: VGY2133 |
wireless router
analog phone gateway |
abgn+ac AC1200 |
Intel (Lantiq) PXB 4389 600 MHz |
128 MiB | 128 MiB | MediaTek MT7603EN 2x2:2, bgn |
Qualcomm Atheros QCA9882 2x2:2, an+ac Ant. conn: RP-SMA |
Intel (Lantiq) PXB 4389 |
1GbE 4x LAN 1x WAN |
USB 2.0
SFP |
2x USB | 2018-03-09 |
DrayTek Vigor 2620Ln FCC ID: VGY2620 |
wireless router
dsl modem LTE modem |
bgn | Lantiq (Intel) PSB 80221 500 MHz 2 cores |
16 MiB | 128 MiB | MediaTek MT7603E 2x2:2, bgn |
Lantiq (Intel) PSB 80221 |
1GbE 1x LAN 1x WAN |
Mini PCIe | 2019-06-10 | ||
DrayTek Vigor 2700VG FCC ID: I4L-MS6833B |
wireless router
dsl modem analog phone gateway |
bg | Infineon (Lantiq) PSB 50505 235 MHz |
4 MiB | 16 MiB | Realtek RT2561 ?x?:?, bg Ant. conn: RP-SMA Is a module |
ADMtek ADM6996I |
100M 4x LAN |
Mini PCI | |||
DrayTek Vigor 2710ne FCC ID: VGYV2710NE |
wireless router
dsl modem |
bgn | Lantiq PSB 50601 266 MHz |
4 MiB | 16 MiB | Ralink RT3070L 1x1:1, bgn Ant. conn: RP-SMA |
Infineon ADM6996M |
100M 4x LAN |
2010-06-03 | |||
DrayTek Vigor 2760Vn FCC ID: VGYV2760VN |
wireless router
dsl modem analog phone gateway |
bgn | Lantiq PSB 80920 500 MHz |
128 MiB | 128 MiB | Ralink RT5392 2x2:2, bgn Ant. conn: U.FL, RP-SMA |
Lantiq PSB 80920 |
1GbE 4x LAN |
USB 2.0 | 2x USB | 2012-08-20 | |
DrayTek Vigor 2765Vac FCC ID: VGY2765 |
wireless router
dsl modem analog phone gateway |
abgn+ac AC1300 |
Intel (Lantiq) PXB4395 600 MHz 2 cores |
128 MiB | 256 MiB | MediaTek MT7615DN 2x2:2, bgn Ant. conn: RP-SMA |
MediaTek MT7615DN 2x2:2, an+ac Ant. conn: RP-SMA |
Intel (Lantiq) PXB4395 |
1GbE 4x LAN |
USB 2.0 | 2x USB | 2020-04-23 |
DrayTek Vigor 2800VG FCC ID: JCK-GN-WIAG02 |
wireless router
dsl modem analog phone gateway |
bg | Samsung S3C2510A |
4 MiB | 16 MiB | Atheros AR2414 ?x?:?, bg Ant. conn: U.FL, RP-SMA Is a module |
IC+ IP175C |
100M 4x LAN |
Mini PCI
USB 2.0 |
1x USB | 2005-03-16 | |
DrayTek Vigor 2820Vn FCC ID: RRK2007030071 |
dsl modem
wireless router analog phone gateway |
bgn N300 |
Infineon (Lantiq) PSB 50702 333 MHz |
8 MiB | 32 MiB | Ralink RT2860 2x3:3, bgn Ant. conn: RP-SMA Is a module |
Infineon PSB6972 |
100M 3x LAN 1x WAN |
USB 2.0
Mini PCI |
1x USB | ||
DrayTek Vigor 2830n FCC ID: RRK-WMPND02A1 |
wireless router
dsl modem |
bgn | Infineon (Lantiq) PSB 50712 333 MHz |
8 MiB | 64 MiB | Ralink RT2880 2x3:2, bgn Ant. conn: U.FL, RP-SMA Is a module |
Atheros AR8316 |
1GbE 4x LAN 1x WAN |
Mini PCI
USB 2.0 |
1x USB | 2009-01-23 | |
DrayTek Vigor 2830n plus FCC ID: RRK-WMPND02A1 |
wireless router
dsl modem |
abgn | Infineon (Lantiq) PSB 50712 333 MHz |
8 MiB | 64 MiB | Ralink RT2880F 2x3:2, abgn Ant. conn: U.FL, RP-SMA Is a module |
Atheros AR8316 |
1GbE 4x LAN 1x WAN |
Mini PCI
USB 2.0 |
1x USB | 2009-01-23 | |
DrayTek Vigor 2832n FCC ID: VGY2832 |
wireless router
dsl modem |
bgn N300 |
Lantiq PSB 50388 |
8 MiB | 64 MiB | Realtek RTL8192ER 2x2:2, bgn Ant. conn: RP-SMA |
Lantiq PSB 50388 |
1GbE 4x LAN 1x WAN |
USB 2.0
Mini PCIe |
2x USB | 2016-01-09 | |
DrayTek Vigor 2860Vn FCC ID: VGYV2860VN, YUAWMCND03TD, VGYV2860VNPLUS |
wireless router
dsl modem analog phone gateway |
abgn | Lantiq PSB 80920 500 MHz |
128 MiB | 128 MiB | Ralink RT5392L 2x2:2, bgn Ant. conn: U.FL, RP-SMA |
Atheros AR9382 2x2:2, an Ant. conn: U.FL, RP-SMA Is a module |
Atheros AR8327 |
1GbE 5x LAN 2x WAN |
USB 2.0
Mini PCIe |
2x USB | 2014-01-02 |
DrayTek Vigor 2860ac FCC ID: VGYV2860AC |
wireless router
dsl modem |
abgn+ac AC1600 |
Lantiq PSB 80920 500 MHz |
128 MiB | 128 MiB | Qualcomm Atheros QCA9880 3x3:3, an+ac Ant. conn: RP-SMA, U.FL Is a module |
Qualcomm Atheros QCA9582 2x2:2, bgn Ant. conn: U.FL, RP-SMA |
Qualcomm Atheros QCA8337 |
1GbE 5x LAN 2x WAN |
Mini PCIe
USB 2.0 |
2x USB | 2015-05-12 |
DrayTek Vigor 2862ac FCC ID: VGY2862 |
wireless router
dsl modem |
abgn+ac AC2100 |
unk. | Realtek RTL8192ER 2x2:2, bgn Ant. conn: RP-SMA |
Qualcomm Atheros QCA9980 4x4:4, an+ac Ant. conn: RP-SMA |
1GbE 4x LAN 1x WAN |
USB 2.0 | 2x USB | 2017-09-27 | |||
DrayTek Vigor 2865Vac FCC ID: VGY2865 |
wireless router
dsl modem analog phone gateway |
abgn+ac AC1300 |
Intel (Lantiq) GRX350A3 800 MHz 2 cores |
128 MiB | 256 MiB | MediaTek MT7615DN 2x2:2, bgn Ant. conn: RP-SMA, U.FL |
MediaTek MT7615DN 2x2:2, an+ac Ant. conn: U.FL, RP-SMA |
Intel (Lantiq) GRX350A3 |
1GbE 5x LAN 1x WAN |
SFP
USB 3.0 Mini PCIe NGFF M.2 |
2x USB | 2020-12-02 |
DrayTek Vigor 2865ax FCC ID: VGY2865AX |
wireless router
dsl modem |
abgn+ac+ax AX3000 |
Intel (Lantiq) GRX350A3 800 MHz 2 cores |
128 MiB | 256 MiB | Intel (Lantiq) WAV654A1 2x2:2, bgn+ax Ant. conn: RP-SMA |
Intel (Lantiq) WAV654A1 2x2:2, an+ac+ax Ant. conn: RP-SMA |
Intel (Lantiq) GRX350A3 |
1GbE 5x LAN 1x WAN |
USB 2.0
SFP |
2x USB | 2021-04-13 |
DrayTek Vigor 2900G | wireless router | bg | Samsung S3C2510A 166 MHz |
2 MiB | 8 MiB | Conexant unk. 2x2:2, bg Ant. conn: RP-SMA Is a module |
Micrel KS8995X |
100M 4x LAN 1x WAN |
Mini PCI
USB 1.1 |
1x USB | ||
DrayTek Vigor 2910G | wireless router | bg G108 |
Samsung S3C2510 166 MHz |
4 MiB | 16 MiB | Atheros AR2413A 2x2:2, bg Ant. conn: RP-SMA Is a module |
Micrel KSZ8995XA |
100M 4x LAN 1x WAN |
Mini PCI
USB 1.1 |
1x USB | ||
DrayTek Vigor 2912n FCC ID: VGYV2912N |
wireless router | bgn | Ralink RT6856 |
16 MiB | 64 MiB | Ralink RT5392 2x2:2, bgn Ant. conn: RP-SMA |
Atheros AR8327 |
100M 4x LAN 1x WAN |
USB 2.0 | 1x USB | 2014-03-07 | |
DrayTek Vigor 2915ac FCC ID: VGY2915 |
wireless router
dsl modem LTE modem |
abgn+ac AC1300 |
MediaTek MT7621AT 880 MHz 2 cores |
128 MiB | 256 MiB | MediaTek MT7615DN 2x2:2, bgn Ant. conn: RP-SMA |
MediaTek MT7615DN 2x2:2, an+ac Ant. conn: RP-SMA |
MediaTek MT7621AT |
1GbE 4x LAN 1x WAN |
USB 2.0 | 1x USB | 2020-03-20 |
DrayTek Vigor 2925ac FCC ID: VGYV2860AC |
wireless router | abgn+ac | Lantiq PSB 80920 600 MHz |
128 MiB | 128 MiB | Qualcomm Atheros QCA9880 3x3:3, an+ac Ant. conn: U.FL, RP-SMA Is a module |
Qualcomm Atheros QCA9582 2x2:2, bgn Ant. conn: U.FL, RP-SMA |
Qualcomm Atheros QCA8337 |
1GbE 5x LAN 2x WAN |
USB 2.0
Mini PCIe |
2x USB | 2015-05-12 |
DrayTek Vigor 2952n FCC ID: VGY2952 |
wireless router | bgn | MediaTek MT7621AT 880 MHz 2 cores |
128 MiB | 256 MiB | MediaTek MT7602EN 2x2:2, bgn Ant. conn: U.FL, RP-SMA |
MediaTek MT7621AT |
1G 4x LAN 2x WAN |
Mini PCIe
USB 3.0 USB 2.0 SFP |
2x USB | 2016-10-04 | |
DrayTek Vigor AP810 FCC ID: VGYVAP810 |
access point | bgn | MediaTek MT7620N 580 MHz |
8 MiB | 64 MiB | MediaTek MT7620N 2x2:2, bgn Ant. conn: RP-SMA |
MediaTek MT7620N |
100M 5x LAN |
USB 2.0 | 1x USB | 2014-02-19 | |
DrayTek Vigor Fly200 FCC ID: VGYVFLY200 |
wireless router | bgn | Ralink RT3052F |
4 MiB | 32 MiB | Ralink RT3052F 2x2:2, bgn Ant. conn: RP-SMA, U.FL |
Ralink RT3052F |
100M 4x LAN 1x WAN |
USB 2.0 | 1x USB | 2010-06-25 |
Wired routers
Device | Type | PHY modes | Manuf. | CPU1 | FLA1 | RAM1 | WI1 | WI2 | Switch | Ether. | Expan. | Ports | FCC date |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DrayTek Vigor 2200USB | router | DrayTek CoO: https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Flag_of_the_Republic_of_China.svg/40px-Flag_of_the_Republic_of_China.svg.png 2x" alt="Flag of the Republic of China.svg" width="20" height="13" class="thumbborder" style="border: 1px solid rgb(234, 236, 240); vertical-align: middle;" decoding="async" /> |
Samsung S3C4510B |
2 MiB | 4 MiB | unk. | Kendin KS8995 |
100M 4x LAN |
USB 1.1 | 2x USB | 2001-04-01 (no FCC) | ||
DrayTek Vigor 2500 | router
dsl modem |
DrayTek |
Conexant CX82310-24 |
2 MiB | 8 MiB | unk. | Kendin KS8995XA |
100M 4x LAN |
2005-01-01 (no FCC) | ||||
DrayTek Vigor 2710 FCC ID: VGYV2710NE has internal images |
router
dsl modem |
DrayTek |
Lantiq PSB 50610 333 MHz |
8 MiB | 32 MiB | unk. | Lantiq ADM6996M |
100M 4x LAN |
USB 2.0 | 1x USB | 2010-03-06 | ||
DrayTek Vigor 2820 | router
dsl modem |
Infineon (Lantiq) PSB 50702 333 MHz |
8 MiB | 32 MiB | unk. | Infineon PSB6972 |
100M 3x LAN 1x WAN |
USB 2.0 | 1x USB | ||||
DrayTek Vigor 2920 | router | Infineon (Lantiq) unk. |
8 MiB | 64 MiB | unk. | Atheros AR8316 |
1GbE 5x LAN 1x WAN |
USB 2.0 | 1x USB | ||||
DrayTek Vigor 3900 | router | Freescale (NXP) M83263G13 650 MHz 2 cores |
512 MiB | 256 MiB | unk. | Atheros | 1GbE 2x LAN 4x WAN |
SFP
USB 2.0 |
2x USB | 2012-10-01 (no FCC) |