⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ippool.sql

📁 使用最广泛的radius的linux的源码
💻 SQL
字号:
---- Table structure for table 'radippool'--CREATE TABLE radippool (	id			BIGSERIAL PRIMARY KEY,	pool_name		varchar(64) NOT NULL,	FramedIPAddress		INET NOT NULL,	NASIPAddress		VARCHAR(16) NOT NULL default '',	pool_key		VARCHAR(64) NOT NULL default 0,	CalledStationId		VARCHAR(64),	CallingStationId	text NOT NULL default ''::text,	expiry_time		TIMESTAMP(0) without time zone NOT NULL default 'now'::timestamp(0),	username		text DEFAULT ''::text);CREATE INDEX radippool_poolname_expire ON radippool USING btree (pool_name, expiry_time);CREATE INDEX radippool_framedipaddress ON radippool USING btree (framedipaddress);CREATE INDEX radippool_nasip_poolkey_ipaddress ON radippool USING btree (nasipaddress, pool_key, framedipaddress);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -