add: 提交
This commit is contained in:
64
crontask/cm/schema/cm-schema.go
Normal file
64
crontask/cm/schema/cm-schema.go
Normal file
@@ -0,0 +1,64 @@
|
||||
package cmschema
|
||||
|
||||
// FileHeader ...
|
||||
type FileHeader struct {
|
||||
TimeStamp string `xml:"TimeStamp"`
|
||||
TimeZone string `xml:"TimeZone"`
|
||||
VendorName string `xml:"VendorName"`
|
||||
ElementType string `xml:"ElementType"`
|
||||
CmVersion string `xml:"CmVersion"`
|
||||
}
|
||||
|
||||
// N ...
|
||||
type N struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
Value string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// FieldName ...
|
||||
type FieldName struct {
|
||||
N []N `xml:"N"`
|
||||
}
|
||||
|
||||
// V ...
|
||||
type V struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
Value string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// Object ...
|
||||
type Object struct {
|
||||
RmUIDAttr string `xml:"rmUID,attr"`
|
||||
DnAttr string `xml:"Dn,attr,omitempty"`
|
||||
UserLabelAttr string `xml:"UserLabel,attr,omitempty"`
|
||||
PVFlagAttr string `xml:"PVFlag,attr"`
|
||||
VMIDAttr string `xml:"VMID,attr,omitempty"`
|
||||
VNFInstanceIDAttr string `xml:"VNFInstanceID,attr,omitempty"`
|
||||
V []V `xml:"V"`
|
||||
}
|
||||
|
||||
// FieldValue ...
|
||||
type FieldValue struct {
|
||||
Object []Object `xml:"Object"`
|
||||
}
|
||||
|
||||
// Objects ...
|
||||
type Objects struct {
|
||||
ObjectType string `xml:"ObjectType"`
|
||||
FieldName FieldName `xml:"FieldName"`
|
||||
FieldValue FieldValue `xml:"FieldValue"`
|
||||
}
|
||||
|
||||
// DataFile ...
|
||||
type DataFile struct {
|
||||
FileHeader FileHeader `xml:"FileHeader"`
|
||||
Objects []Objects `xml:"Objects"`
|
||||
XsiAttr string `xml:"xmlns:xsi,attr"`
|
||||
XsiLoc string `xml:"xsi:noNamespaceSchemaLocation,attr"`
|
||||
}
|
||||
|
||||
// NRM xml file
|
||||
type NRMXmlFile struct {
|
||||
Header string `xml:"Header"`
|
||||
DataFile DataFile `xml:"xmlns:xsi"`
|
||||
}
|
||||
296
crontask/cm/yaml/cm-yaml.go
Normal file
296
crontask/cm/yaml/cm-yaml.go
Normal file
@@ -0,0 +1,296 @@
|
||||
package cmyaml
|
||||
|
||||
type UdmCm struct {
|
||||
ManagedElement ManagedElement `yaml:"ManagedElement"`
|
||||
UdmFunction UdmFunction `yaml:"UdmFunction"`
|
||||
UdrFunction UdrFunction `yaml:"UdrFunction"`
|
||||
AusfFunction AusfFunction `yaml:"AusfFunction"`
|
||||
IPResource IPResource `yaml:"IPResource"`
|
||||
}
|
||||
|
||||
type UdmFunction struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
SbiServiceList string `yaml:"SbiServiceList"`
|
||||
}
|
||||
|
||||
type UdrFunction struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AddrType string `yaml:"AddrType"`
|
||||
IpVersion string `yaml:"IpVersion"`
|
||||
AddrSegList string `yaml:"AddrSegList"`
|
||||
}
|
||||
|
||||
type AusfFunction struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
}
|
||||
|
||||
type IPResource struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
InterfaceType string `yaml:"InterfaceType"`
|
||||
LocIpV4AddrList string `yaml:"LocIpV4AddrList"`
|
||||
LocIpV6AddrList string `yaml:"LocIpV6AddrList"`
|
||||
}
|
||||
|
||||
type ManagedElement struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
VendorName string `yaml:"VendorName"`
|
||||
ManagedBy string `yaml:"ManagedBy"`
|
||||
ManagementIpAddress string `yaml:"ManagementIpAddress"`
|
||||
SwVersion string `yaml:"SwVersion"`
|
||||
PatchInfo string `yaml:"PatchInfo"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
}
|
||||
|
||||
type AmfCm struct {
|
||||
ManagedElement ManagedElement `yaml:"ManagedElement"`
|
||||
AmfFunction AmfFunction `yaml:"AmfFunction"`
|
||||
EpRpDynN8Amf EpRpDynN8Amf `yaml:"EpRpDynN8Amf"`
|
||||
EpRpDynN11Amf EpRpDynN11Amf `yaml:"EpRpDynN11Amf"`
|
||||
EpRpDynN12Amf EpRpDynN12Amf `yaml:"EpRpDynN12Amf"`
|
||||
IPResource IPResource `yaml:"IPResource"`
|
||||
}
|
||||
|
||||
type EpRpDynN11Amf struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
}
|
||||
|
||||
type EpRpDynN12Amf struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
}
|
||||
|
||||
type AmfFunction struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
SbiServiceList string `yaml:"SbiServiceList"`
|
||||
AmfGuamiList string `yaml:"AmfGuamiList"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
SnssaiList string `yaml:"SnssaiList"`
|
||||
MaxUser string `yaml:"MaxUser"`
|
||||
RelativeCapacity string `yaml:"RelativeCapacity"`
|
||||
MaxGnbNum string `yaml:"MaxGnbNum"`
|
||||
}
|
||||
|
||||
type EpRpDynN8Amf struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
}
|
||||
|
||||
type SmfCm struct {
|
||||
ManagedElement ManagedElement `yaml:"ManagedElement"`
|
||||
SmfFunction SmfFunction `yaml:"SmfFunction"`
|
||||
AddrPool AddrPool `yaml:"AddrPool"`
|
||||
EpRpDynN7Smf EpRpDynN7Smf `yaml:"EpRpDynN7Smf"`
|
||||
EpRpDynN10Smf EpRpDynN10Smf `yaml:"EpRpDynN10Smf"`
|
||||
IPResource IPResource `yaml:"IPResource"`
|
||||
}
|
||||
|
||||
type SmfFunction struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
MaxQfi string `yaml:"MaxQfi"`
|
||||
MaxPduSessions string `yaml:"MaxPduSessions"`
|
||||
UpfList string `yaml:"UpfList"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
SbiServiceList string `yaml:"SbiServiceList"`
|
||||
}
|
||||
|
||||
type AddrPool struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AddrType string `yaml:"AddrType"`
|
||||
IpVersion string `yaml:"IpVersion"`
|
||||
AddrSegList string `yaml:"AddrSegList"`
|
||||
}
|
||||
|
||||
type EpRpDynN7Smf struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
}
|
||||
|
||||
type EpRpDynN10Smf struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
}
|
||||
|
||||
type UpfCm struct {
|
||||
IPResource IPResource `yaml:"IPResource"`
|
||||
InventoryUnitHost InventoryUnitHost `yaml:"InventoryUnitHost"`
|
||||
InventoryUnitAccessory InventoryUnitAccessory `yaml:"InventoryUnitAccessory"`
|
||||
UdrFunction UpfUdrFunction `yaml:"UdrFunction"`
|
||||
InventoryUnitRack InventoryUnitRack `yaml:"InventoryUnitRack"`
|
||||
EpRpDynN9Upf EpRpDynN9Upf `yaml:"EpRpDynN9Upf"`
|
||||
AusfFunction UpfAusfFunction `yaml:"AusfFunction"`
|
||||
SmfFunction UpfSmfFunction `yaml:"SmfFunction"`
|
||||
InventoryUnitPack InventoryUnitPack `yaml:"InventoryUnitPack"`
|
||||
UpfFunction UpfFunction `yaml:"UpfFunction"`
|
||||
AmfFunction UpfAmfFunction `yaml:"AmfFunction"`
|
||||
ManagedElement ManagedElement `yaml:"ManagedElement"`
|
||||
InventoryUnitShelf InventoryUnitShelf `yaml:"InventoryUnitShelf"`
|
||||
EpRpDynN3Upf EpRpDynN3Upf `yaml:"EpRpDynN3Upf"`
|
||||
}
|
||||
|
||||
type InventoryUnitRack struct {
|
||||
SbiServiceList string `yaml:"SbiServiceList"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
MaxPduSessions string `yaml:"MaxPduSessions"`
|
||||
MaxQfi string `yaml:"MaxQfi"`
|
||||
UpfList string `yaml:"UpfList"`
|
||||
Id string `yaml:"Id"`
|
||||
}
|
||||
|
||||
type UpfAusfFunction struct {
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
Id string `yaml:"Id"`
|
||||
}
|
||||
|
||||
type EpRpDynN3Upf struct {
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
}
|
||||
|
||||
type InventoryUnitHost struct {
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
VendorName string `yaml:"VendorName"`
|
||||
DateOfLastService string `yaml:"DateOfLastService"`
|
||||
ManufacturerData string `yaml:"ManufacturerData"`
|
||||
VendorUnitTypeNumber string `yaml:"VendorUnitTypeNumber"`
|
||||
HostPosition string `yaml:"HostPosition"`
|
||||
MemSize string `yaml:"MemSize"`
|
||||
HardDiskSize string `yaml:"HardDiskSize"`
|
||||
NumberOfCpu string `yaml:"NumberOfCpu"`
|
||||
Id string `yaml:"Id"`
|
||||
VendorUnitFamilyType string `yaml:"VendorUnitFamilyType"`
|
||||
SerialNumber string `yaml:"SerialNumber"`
|
||||
VersionNumber string `yaml:"VersionNumber"`
|
||||
DateOfManufacture string `yaml:"DateOfManufacture"`
|
||||
}
|
||||
|
||||
type InventoryUnitAccessory struct {
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
VendorName string `yaml:"VendorName"`
|
||||
SerialNumber string `yaml:"SerialNumber"`
|
||||
ManufacturerData string `yaml:"ManufacturerData"`
|
||||
DateOfLastService string `yaml:"DateOfLastService"`
|
||||
AccessoryPosition string `yaml:"AccessoryPosition"`
|
||||
AccessoryType string `yaml:"AccessoryType"`
|
||||
Id string `yaml:"Id"`
|
||||
VendorUnitFamilyType string `yaml:"VendorUnitFamilyType"`
|
||||
VendorUnitTypeNumber string `yaml:"VendorUnitTypeNumber"`
|
||||
VersionNumber string `yaml:"VersionNumber"`
|
||||
DateOfManufacture string `yaml:"DateOfManufacture"`
|
||||
AddtionalInformation string `yaml:"AddtionalInformation"`
|
||||
}
|
||||
|
||||
type EpRpDynN9Upf struct {
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
LocIpAddrList string `yaml:"LocIpAddrList"`
|
||||
FarIpSubnetworkList string `yaml:"FarIpSubnetworkList"`
|
||||
Id string `yaml:"Id"`
|
||||
}
|
||||
|
||||
type UpfSmfFunction struct {
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
}
|
||||
|
||||
type InventoryUnitPack struct {
|
||||
VendorUnitFamilyType string `yaml:"VendorUnitFamilyType"`
|
||||
VendorName string `yaml:"VendorName"`
|
||||
VersionNumber string `yaml:"VersionNumber"`
|
||||
DateOfManufacture string `yaml:"DateOfManufacture"`
|
||||
DateOfLastService string `yaml:"DateOfLastService"`
|
||||
ManufacturerData string `yaml:"ManufacturerData"`
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
PortsInformation string `yaml:"PortsInformation"`
|
||||
PackPosition string `yaml:"PackPosition"`
|
||||
SlotsOccupied string `yaml:"SlotsOccupied"`
|
||||
VendorUnitTypeNumber string `yaml:"VendorUnitTypeNumber"`
|
||||
SerialNumber string `yaml:"SerialNumber"`
|
||||
}
|
||||
|
||||
type UpfAmfFunction struct {
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
}
|
||||
|
||||
type InventoryUnitShelf struct {
|
||||
ManufacturerData string `yaml:"ManufacturerData"`
|
||||
RackPosition string `yaml:"RackPosition"`
|
||||
SerialNumber string `yaml:"SerialNumber"`
|
||||
VersionNumber string `yaml:"VersionNumber"`
|
||||
VendorUnitFamilyType string `yaml:"VendorUnitFamilyType"`
|
||||
VendorUnitTypeNumber string `yaml:"VendorUnitTypeNumber"`
|
||||
VendorName string `yaml:"VendorName"`
|
||||
DateOfManufacture string `yaml:"DateOfManufacture"`
|
||||
DateOfLastService string `yaml:"DateOfLastService"`
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
}
|
||||
|
||||
type UpfUdrFunction struct {
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
Fqdn string `yaml:"Fqdn"`
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
}
|
||||
|
||||
type UpfFunction struct {
|
||||
MaxThroughput string `yaml:"MaxThroughput"`
|
||||
Id string `yaml:"Id"`
|
||||
UserLabel string `yaml:"UserLabel"`
|
||||
AdministrativeState string `yaml:"AdministrativeState"`
|
||||
OperationalState string `yaml:"OperationalState"`
|
||||
VnfInstanceId string `yaml:"VnfInstanceId"`
|
||||
MaxQosFlows string `yaml:"MaxQosFlows"`
|
||||
}
|
||||
186
crontask/config.go
Normal file
186
crontask/config.go
Normal file
@@ -0,0 +1,186 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"ems.agt/lib/global"
|
||||
"ems.agt/lib/log"
|
||||
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
// Yaml struct of config
|
||||
type YamlConfig struct {
|
||||
Logger struct {
|
||||
File string `yaml:"file"`
|
||||
Level string `yaml:"level"`
|
||||
Duration int `yaml:"duration"`
|
||||
Count int `yaml:"count"`
|
||||
} `yaml:"logger"`
|
||||
|
||||
OMC struct {
|
||||
Name string `yaml:"name"`
|
||||
HostUri string `yaml:"hosturi"`
|
||||
HostNo string `yaml:"hostno"`
|
||||
Province string `yaml:"province"`
|
||||
NetAbbr string `yaml:"netabbr"`
|
||||
Vendor string `yaml:"vendor"`
|
||||
} `yaml:"omc"`
|
||||
|
||||
Database struct {
|
||||
Type string `yaml:"type"`
|
||||
User string `yaml:"user"`
|
||||
Password string `yaml:"password"`
|
||||
Host string `yaml:"host"`
|
||||
Port string `yaml:"port"`
|
||||
Name string `yaml:"name"`
|
||||
Backup string `yaml:"backup"`
|
||||
} `yaml:"database"`
|
||||
|
||||
Tasks struct {
|
||||
File string `yaml:"file"`
|
||||
} `yaml:"tasks"`
|
||||
|
||||
NBI struct {
|
||||
CM struct {
|
||||
CfgFileDir string `yaml:"cfgfiledir"`
|
||||
XmlFileDir string `yaml:"xmlfiledir"`
|
||||
Version string `yaml:"version"`
|
||||
} `yaml:"cm"`
|
||||
PM struct {
|
||||
CfgFileDir string `yaml:"cfgfiledir"`
|
||||
XmlFileDir string `yaml:"xmlfiledir"`
|
||||
Version string `yaml:"version"`
|
||||
} `yaml:"pm"`
|
||||
} `yaml:"nbi"`
|
||||
}
|
||||
|
||||
var yamlConfig YamlConfig
|
||||
|
||||
func ReadConfig(configFile string) error {
|
||||
yamlFile, err := os.ReadFile(configFile)
|
||||
if err != nil {
|
||||
fmt.Println("Read yaml config file error:", err)
|
||||
return err
|
||||
}
|
||||
|
||||
err = yaml.Unmarshal(yamlFile, &yamlConfig)
|
||||
if err != nil {
|
||||
fmt.Println("Unmarshal error:", err)
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func GetYamlConfig() *YamlConfig {
|
||||
return &yamlConfig
|
||||
}
|
||||
|
||||
func GetLogLevel() log.LogLevel {
|
||||
var logLevel log.LogLevel
|
||||
switch strings.ToLower(yamlConfig.Logger.Level) {
|
||||
case "trace":
|
||||
logLevel = log.LOG_TRACE
|
||||
case "info":
|
||||
logLevel = log.LOG_INFO
|
||||
case "debug":
|
||||
logLevel = log.LOG_DEBUG
|
||||
case "warn":
|
||||
logLevel = log.LOG_WARN
|
||||
case "error":
|
||||
logLevel = log.LOG_ERROR
|
||||
case "fatal":
|
||||
logLevel = log.LOG_FATAL
|
||||
case "off":
|
||||
logLevel = log.LOG_OFF
|
||||
default:
|
||||
logLevel = log.LOG_DEBUG
|
||||
}
|
||||
return logLevel
|
||||
}
|
||||
|
||||
type Task struct {
|
||||
Name string `yaml:"name"`
|
||||
Status string `yaml:"status" default:"Active"`
|
||||
Uri string `yaml:"uri"`
|
||||
Params string `yaml:"params"`
|
||||
Body string `yaml:"body"`
|
||||
Interval uint64 `yaml:"interval"`
|
||||
Unit string `yaml:"unit"`
|
||||
At string `yaml:"at"`
|
||||
From int `yaml:"from"`
|
||||
Do string `yaml:"do"`
|
||||
}
|
||||
|
||||
type Crontab struct {
|
||||
Name string `yaml:"name"`
|
||||
Status string `yaml:"status" default:"Active"`
|
||||
Tab string `yaml:"tab"`
|
||||
Do string `yaml:"do"`
|
||||
Uri string `yaml:"uri"`
|
||||
Params string `yaml:"params"`
|
||||
Body string `yaml:"body"`
|
||||
}
|
||||
|
||||
type Tasks struct {
|
||||
Tasks []Task `yaml:"tasks"`
|
||||
Crontabs []Crontab `yaml:"crontab"`
|
||||
}
|
||||
|
||||
const (
|
||||
TaskStatusActive = "active"
|
||||
TaskStatusInactive = "inactive"
|
||||
)
|
||||
|
||||
var taskSet Tasks
|
||||
|
||||
func ReadTasksYaml(pfile string) (ret error) {
|
||||
log.Debug("pfile:", pfile)
|
||||
file, err := os.ReadFile(pfile)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return err
|
||||
}
|
||||
|
||||
err = yaml.Unmarshal(file, &taskSet)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return err
|
||||
}
|
||||
|
||||
log.Trace("tasks:", taskSet)
|
||||
return nil
|
||||
}
|
||||
|
||||
func GetDefaultUserAgent() string {
|
||||
return "OMC-crontask/" + global.Version
|
||||
}
|
||||
|
||||
const defaultConfigFile = "./etc/crontask.yaml"
|
||||
|
||||
var ConfigFile *string
|
||||
|
||||
func init() {
|
||||
ConfigFile = flag.String("c", defaultConfigFile, "config file")
|
||||
pv := flag.Bool("v", false, "print version")
|
||||
ph := flag.Bool("h", false, "print help")
|
||||
|
||||
flag.Parse()
|
||||
if *pv {
|
||||
fmt.Printf("OMC crontask version: %s\n%s\n%s\n\n", global.Version, global.BuildTime, global.GoVer)
|
||||
os.Exit(0)
|
||||
}
|
||||
if *ph {
|
||||
flag.Usage()
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
err := ReadConfig(*ConfigFile)
|
||||
if err != nil {
|
||||
fmt.Println("Failed to ReadConfig:", err)
|
||||
os.Exit(3)
|
||||
}
|
||||
}
|
||||
32
crontask/config_linux.go
Normal file
32
crontask/config_linux.go
Normal file
@@ -0,0 +1,32 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"os/signal"
|
||||
"syscall"
|
||||
|
||||
"ems.agt/lib/log"
|
||||
)
|
||||
|
||||
// 启动一个 goroutine 监听信号量
|
||||
func ReloadRoutine() {
|
||||
sigCh := make(chan os.Signal, 1)
|
||||
|
||||
signal.Notify(sigCh, syscall.SIGUSR1)
|
||||
|
||||
for {
|
||||
<-sigCh
|
||||
log.Info("Received reload signal, reloading config...")
|
||||
|
||||
err := ReadConfig(*ConfigFile)
|
||||
if err != nil {
|
||||
log.Error("Failed to ReadConfig:", err)
|
||||
continue
|
||||
}
|
||||
|
||||
log.Info("Config reloaded successfully.")
|
||||
}
|
||||
}
|
||||
34
crontask/config_windows.go
Normal file
34
crontask/config_windows.go
Normal file
@@ -0,0 +1,34 @@
|
||||
//go:build windows
|
||||
// +build windows
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"os/signal"
|
||||
"syscall"
|
||||
|
||||
"ems.agt/lib/log"
|
||||
)
|
||||
|
||||
// 启动一个 goroutine 监听信号量
|
||||
func ReloadRoutine() {
|
||||
sigCh := make(chan os.Signal, 1)
|
||||
|
||||
//signal.Notify(sigCh, syscall.SIGUSR1)
|
||||
|
||||
signal.Notify(sigCh, syscall.SIGTRAP)
|
||||
|
||||
for {
|
||||
<-sigCh
|
||||
log.Info("Received reload signal, reloading config...")
|
||||
|
||||
err := ReadConfig(*ConfigFile)
|
||||
if err != nil {
|
||||
log.Error("Failed to ReadConfig:", err)
|
||||
continue
|
||||
}
|
||||
|
||||
log.Info("Config reloaded successfully.")
|
||||
}
|
||||
}
|
||||
BIN
crontask/crontask
Normal file
BIN
crontask/crontask
Normal file
Binary file not shown.
41
crontask/crontask.go
Normal file
41
crontask/crontask.go
Normal file
@@ -0,0 +1,41 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"ems.agt/lib/dborm"
|
||||
"ems.agt/lib/global"
|
||||
"ems.agt/lib/log"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
log.InitLogger(yamlConfig.Logger.File, yamlConfig.Logger.Duration, yamlConfig.Logger.Count, "omc:crontask", GetLogLevel())
|
||||
fmt.Printf("OMC crontask version: %s\n", global.Version)
|
||||
log.Infof("========================= OMC crontask startup =========================")
|
||||
log.Infof("OMC crontask version: %s %s %s", global.Version, global.BuildTime, global.GoVer)
|
||||
|
||||
err := dborm.InitDbClient(yamlConfig.Database.Type, yamlConfig.Database.User, yamlConfig.Database.Password,
|
||||
yamlConfig.Database.Host, yamlConfig.Database.Port, yamlConfig.Database.Name)
|
||||
if err != nil {
|
||||
fmt.Println("dborm.initDbClient err:", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
err = initDbClient()
|
||||
if err != nil {
|
||||
fmt.Println("initDBClient error:", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
ReadTasksYaml(yamlConfig.Tasks.File)
|
||||
|
||||
//go ReloadRoutine()
|
||||
|
||||
go initCronTasks()
|
||||
|
||||
go initCronTabs()
|
||||
|
||||
select {}
|
||||
}
|
||||
526
crontask/db.go
Normal file
526
crontask/db.go
Normal file
@@ -0,0 +1,526 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"ems.agt/lib/log"
|
||||
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
"xorm.io/xorm"
|
||||
)
|
||||
|
||||
type NullTime sql.NullTime
|
||||
|
||||
type DBClient struct {
|
||||
dbType string
|
||||
dbUrl string
|
||||
dbConnMaxLifetime time.Duration
|
||||
dbMaxIdleConns int
|
||||
dbMaxOpenConns int
|
||||
IsShowSQL bool
|
||||
|
||||
xEngine *xorm.Engine
|
||||
}
|
||||
|
||||
var dbClient DBClient
|
||||
|
||||
func initDbClient() error {
|
||||
db := yamlConfig.Database
|
||||
dbClient.dbUrl = fmt.Sprintf("%s:%s@tcp(%s:%s)/%s?charset=utf8&parseTime=true&loc=Local",
|
||||
db.User, db.Password, db.Host, db.Port, db.Name)
|
||||
dbClient.dbType = db.Type
|
||||
dbClient.dbConnMaxLifetime = 0
|
||||
dbClient.dbMaxIdleConns = 0
|
||||
dbClient.dbMaxOpenConns = 0
|
||||
if log.GetLevel() == log.LOG_TRACE {
|
||||
dbClient.IsShowSQL = true
|
||||
}
|
||||
|
||||
var err error
|
||||
dbClient.xEngine, err = xorm.NewEngine(dbClient.dbType, dbClient.dbUrl)
|
||||
if err != nil {
|
||||
log.Error("Failed to connect database:", err)
|
||||
return err
|
||||
}
|
||||
//dbClient.xEngine.Ping() // 可以判断是否能连接
|
||||
//if err != nil {
|
||||
// log.Error("Failed to ping database:", err)
|
||||
// return err
|
||||
//}
|
||||
// defer dbClient.xEngine.Close() // 退出后关闭
|
||||
|
||||
if dbClient.IsShowSQL == true {
|
||||
dbClient.xEngine.ShowSQL(true)
|
||||
}
|
||||
dbClient.xEngine.SetConnMaxLifetime(dbClient.dbConnMaxLifetime)
|
||||
dbClient.xEngine.SetMaxIdleConns(dbClient.dbMaxIdleConns)
|
||||
dbClient.xEngine.SetMaxOpenConns(dbClient.dbMaxOpenConns)
|
||||
return nil
|
||||
}
|
||||
|
||||
var xEngine *xorm.Engine
|
||||
|
||||
func XormConnectDatabaseWithUri(sql string) (*xorm.Engine, error) {
|
||||
sqlStr := fmt.Sprintf("%s?charset=utf8&parseTime=true&loc=Local", sql)
|
||||
var err error
|
||||
xEngine, err = xorm.NewEngine("mysql", sqlStr) //1、Create xorm engine
|
||||
if err != nil {
|
||||
fmt.Println("Failed to connect database:", err)
|
||||
return nil, err
|
||||
}
|
||||
xEngine.ShowSQL(true)
|
||||
return xEngine, nil
|
||||
}
|
||||
|
||||
type NeInfo struct {
|
||||
Id int `json:"-" xorm:"pk 'id' autoincr"`
|
||||
NeType string `json:"neType" xorm:"ne_type"`
|
||||
NeId string `json:"neId" xorm:"ne_id"` // neUID/rmUID 网元唯一标识
|
||||
RmUID string `json:"rmUID" xorm:"rm_uid"` // neUID/rmUID网元UID
|
||||
NeName string `json:"neName" xorm:"ne_name"` // NeName/UserLabel 网元名称/网元设备友好名称
|
||||
Ip string `json:"ip" xorm:"ip"`
|
||||
Port string `json:"port" xorm:"port"`
|
||||
PvFlag string `json:"pvFlag" xorm:"pv_flag"` // 网元虚实性标识 VNF/PNF: 虚拟/物理
|
||||
NeAddress string `json:"neAddress" xorm:"ne_address"` // 只对PNF
|
||||
Province string `json:"province" xorm:"province"` // 网元所在省份
|
||||
VendorName string `json:"vendorName" xorm:"vendor_name"` // 厂商名称
|
||||
Dn string `json:"dn" xorm:"dn"` // 网络标识
|
||||
Status int `json:"status" xorm:"status"`
|
||||
UpdateTime string `json:"-" xorm:"-"`
|
||||
}
|
||||
|
||||
func XormGetNeInfoByType(neType string, nes *[]NeInfo) (*[]NeInfo, error) {
|
||||
log.Debug("XormGetNeInfoByType processing... ")
|
||||
|
||||
ne := new(NeInfo)
|
||||
rows, err := dbClient.xEngine.Table("ne_info").Where("status=0 and ne_type =?", neType).Rows(ne)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table ne_info from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
defer rows.Close()
|
||||
for rows.Next() {
|
||||
err := rows.Scan(ne)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table ne_info from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
*nes = append(*nes, *ne)
|
||||
}
|
||||
log.Debug("nes:", nes)
|
||||
return nes, nil
|
||||
}
|
||||
|
||||
func XormGetAllNeInfo(nes *[]NeInfo) (*[]NeInfo, error) {
|
||||
log.Debug("XormGetAllNeInfo processing... ")
|
||||
|
||||
ne := new(NeInfo)
|
||||
rows, err := dbClient.xEngine.Table("ne_info").Where("status='0'").Rows(ne)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table ne_info from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
defer rows.Close()
|
||||
for rows.Next() {
|
||||
err := rows.Scan(ne)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table ne_info from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
*nes = append(*nes, *ne)
|
||||
}
|
||||
log.Debug("nes:", nes)
|
||||
return nes, nil
|
||||
}
|
||||
|
||||
type NeState struct {
|
||||
Id int `json:"id" xorm:"pk 'id' autoincr"`
|
||||
NeType string `json:"neType" xorm:"ne_type"`
|
||||
NeId string `json:"neId" xorm:"ne_id"`
|
||||
Version string `json:"version" xorm:"version"`
|
||||
Capability uint32 `json:"capability" xorm:"capability"`
|
||||
SerialNum string `json:"serialNum" xorm:"serial_num"`
|
||||
ExpiryDate string `json:"expiryDate" xorm:"expiry_date"`
|
||||
CpuUsage string `json:"cpuUsage" xorm:"cpu_usage"`
|
||||
MemUsage string `json:"memUsage" xorm:"mem_usage"`
|
||||
DiskSpace string `json:"diskSpace" xorm:"disk_space"`
|
||||
Timestamp string `json:"timestamp" xorm:"-" `
|
||||
}
|
||||
|
||||
func XormInsertNeState(neState *NeState) (int64, error) {
|
||||
log.Debug("XormInsertNeState processing... ")
|
||||
|
||||
var affected int64 = 0
|
||||
|
||||
session := dbClient.xEngine.NewSession()
|
||||
defer session.Close()
|
||||
affected, err := session.InsertOne(neState)
|
||||
session.Commit()
|
||||
return affected, err
|
||||
}
|
||||
|
||||
type NorthboundPm struct {
|
||||
Id int `json:"-" xorm:"pk 'id' autoincr"`
|
||||
Date string `json:"Date" xorm:"date"`
|
||||
Index int `json:"Index" xorm:"index"` // 1天中测量时间粒度(如15分钟)的切片索引: 0~95
|
||||
Timestamp string `json:"-" xorm:"-"`
|
||||
NeName string `json:"NeName" xorm:"ne_name"` // UserLabel
|
||||
RmUID string `json:"RmUID" xorm:"rm_uid"`
|
||||
NeType string `json:"NeType" xorm:"ne_type"` // 网元类型
|
||||
PmVersion string `json:"PmVersion" xorm:"pm_version"` // 性能数据版本号
|
||||
Dn string `json:"Dn" xorm:"dn"` // (???)网元标识, 如:RJN-CMZJ-TZ,SubNetwork=5GC88,ManagedElement=SMF53456,SmfFunction=53456
|
||||
Period string `json:"Period" xorm:"period"` // 测量时间粒度选项:5/15/30/60
|
||||
TimeZone string `json:"TimeZone" xorm:"time_zone"`
|
||||
StartTime string `json:"StartTime" xorm:"start_time"`
|
||||
|
||||
Datas []struct {
|
||||
ObjectType string `json:"ObjectType" xorm:"object_type"` // 网络资源类别名称, Pm指标项列表中为空间粒度 如:SmfFunction
|
||||
KPIs []struct {
|
||||
KPIID string `json:"KPIID" xorm:"pm_name"` // 指标项, 如: SMF.AttCreatePduSession._Dnn
|
||||
KPIValues []struct {
|
||||
Name string `json:"Name" xorm:"name"` // 单个的写"Total", 或者指标项有多个测量项,如Dnn的名称写对应的Dnn"cmnet"/"ims"
|
||||
Value int `json:"Value" xorm:"value"`
|
||||
} `json:"KPIValues" xorm:"sub_datas"`
|
||||
} `json:"KPIs" xorm:"pm_datas"`
|
||||
} `json:"Datas" xorm:"datas"`
|
||||
}
|
||||
|
||||
func XormInsertNorthboundPm(pm *NorthboundPm) (int64, error) {
|
||||
log.Debug("XormInsertNorthboundPm processing... ")
|
||||
|
||||
var affected int64 = 0
|
||||
|
||||
session := dbClient.xEngine.NewSession()
|
||||
defer session.Close()
|
||||
affected, err := session.InsertOne(pm)
|
||||
session.Commit()
|
||||
return affected, err
|
||||
}
|
||||
|
||||
func XormGetNorthboundPm(date string, index int, neType string, pms *[]NorthboundPm) (*[]NorthboundPm, error) {
|
||||
log.Debug("XormGetNorthboundPm processing... ")
|
||||
|
||||
pm := new(NorthboundPm)
|
||||
rows, err := dbClient.xEngine.Table("northbound_pm").
|
||||
Where("`ne_type` = ? AND `date` = ? AND `index` = ?", neType, date, index).
|
||||
Rows(pm)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table northbound_pm from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
defer rows.Close()
|
||||
for rows.Next() {
|
||||
err := rows.Scan(pm)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table northbound_pm from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
*pms = append(*pms, *pm)
|
||||
}
|
||||
log.Debug("pms:", pms)
|
||||
return pms, nil
|
||||
}
|
||||
|
||||
func XormGetMeasureThreshold(tableName string, where string, datas *[]MeasureThreshold) (*[]MeasureThreshold, error) {
|
||||
log.Debug("XormGetMeasureThreshold processing... ")
|
||||
|
||||
row := new(MeasureThreshold)
|
||||
rows, err := dbClient.xEngine.Table(tableName).Where(where).Rows(row)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to get table %s from database: %v", tableName, err)
|
||||
return nil, err
|
||||
}
|
||||
defer rows.Close()
|
||||
for rows.Next() {
|
||||
err := rows.Scan(row)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table measure_threshold from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
*datas = append(*datas, *row)
|
||||
}
|
||||
log.Debug("datas:", datas)
|
||||
|
||||
return datas, nil
|
||||
}
|
||||
|
||||
type MeasureThreshold struct {
|
||||
Id int `json:"id" xorm:"pk 'id' autoincr"`
|
||||
NeType string `json:"neType" xorm:"ne_type"`
|
||||
KpiSet string `json:"kpiSet" xorm:"kpi_set"`
|
||||
Threshold int64 `json:"threshold" xorm:"threshold"`
|
||||
Status string `json:"status" xorm:"Status"`
|
||||
OrigSeverity string `json:"origSeverity" xorm:"orig_severity"`
|
||||
AlarmId string `json:"alarmId" xorm:"alarm_id"`
|
||||
AlarmFlag bool `json:"alarmFlag" xorm:"alarm_flag"`
|
||||
}
|
||||
|
||||
type MeasureData struct {
|
||||
// Id int `json:"id" xorm:"pk 'id' autoincr"`
|
||||
Id int `json:"id" xorm:"-"`
|
||||
Date string `json:"date" xorm:"date"`
|
||||
TaskId int `json:"taskId"`
|
||||
NeType string `json:"neType" xorm:"ne_type"`
|
||||
NeName string `json:"neName" xorm:"ne_name"`
|
||||
RmUid string `json:"rmUid" xorm:"rm_uid"`
|
||||
GranulOption string `json:"granulOption" xorm:"granul_option"`
|
||||
StartTime string `json:"startTime"`
|
||||
EndTime string `json:"endTime"`
|
||||
KpiCode string `json:"kpiCode" xorm:"kpi_code"`
|
||||
KpiId string `json:"kpiId" xorm:"kpi_id"`
|
||||
KpiExt string `json:"kpiExt" xorm:"kpi_ext"`
|
||||
Value int64 `json:"value"`
|
||||
Timestamp string `json:"timestamp"`
|
||||
}
|
||||
|
||||
func XormGetMeasureData(where string, datas *[]MeasureData) (*[]MeasureData, error) {
|
||||
log.Debug("XormGetMeasureData processing... ")
|
||||
|
||||
row := new(MeasureData)
|
||||
rows, err := dbClient.xEngine.Where(where).Rows(row)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to get table measure_data from database: %v", err)
|
||||
return nil, err
|
||||
}
|
||||
defer rows.Close()
|
||||
for rows.Next() {
|
||||
err := rows.Scan(row)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table measure_data from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
*datas = append(*datas, *row)
|
||||
}
|
||||
log.Debug("datas:", datas)
|
||||
|
||||
return datas, nil
|
||||
}
|
||||
|
||||
func XormGetMeasureDataLastOne(neType, rmUID string, taskId int) (*MeasureData, error) {
|
||||
log.Debug("XormGetMeasureDataOneByKpi processing... ")
|
||||
|
||||
measureData := new(MeasureData)
|
||||
_, err := dbClient.xEngine.
|
||||
SQL("select * from measure_data where ne_type=? and rm_uid=? and task_id=? order by start_time desc limit 1", neType, rmUID, taskId).
|
||||
Get(measureData)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to get measure_data: %v", err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return measureData, nil
|
||||
}
|
||||
|
||||
func XormGetMeasureDataOneByKpi(kpi string) (*MeasureData, error) {
|
||||
log.Debug("XormGetMeasureDataOneByKpi processing... ")
|
||||
|
||||
measureData := new(MeasureData)
|
||||
_, err := dbClient.xEngine.
|
||||
SQL("select * from measure_data where kpi_id = ? order by timestamp desc limit 1", kpi).
|
||||
Get(measureData)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to get table measure_data from database: %v", err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
log.Debug("measureData:", measureData)
|
||||
|
||||
return measureData, nil
|
||||
}
|
||||
|
||||
type AlarmDefine struct {
|
||||
AlarmId string `json:"alarmId" xorm:"alarm_id"`
|
||||
AlarmCode int `json:"alarmCode" xorm:"alarm_code"`
|
||||
AlarmTitle string `json:"alarmTitle" xorm:"alarm_title"`
|
||||
NeType string `json:"neType" xorm:"ne_type"`
|
||||
AlarmType string `json:"alarmType" xorm:"alarm_type"`
|
||||
OrigSeverity string `json:"origSeverity" xorm:"orig_severity"`
|
||||
ObjectUid string `json:"objectUid" xorm:"object_uid"`
|
||||
ObjectName string `json:"objectName" xorm:"object_name"`
|
||||
ObjectType string `json:"objectType" xorm:"object_type"`
|
||||
LocationInfo string `json:"locationInfo"`
|
||||
SpecificProblem string `json:"specificProblem"`
|
||||
SpecificProblemId string `json:"specificProblemId" xorm:"specific_problem_id"`
|
||||
AddInfo string `json:"addInfo" xorm:"add_info"`
|
||||
Threshold int64 `json:"threshold" xorm:"threshold"`
|
||||
Status string `json:"status" xorm:"status"`
|
||||
}
|
||||
|
||||
func XormGetAlarmDefine(alarmId string) (*AlarmDefine, error) {
|
||||
log.Debug("XormGetAlarmDefine processing... ")
|
||||
|
||||
alarmDefine := new(AlarmDefine)
|
||||
_, err := dbClient.xEngine.
|
||||
Where("alarm_id=? and status='Active'", alarmId).
|
||||
Get(alarmDefine)
|
||||
if err != nil {
|
||||
log.Error("Failed to get table alarm_define from database:", err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return alarmDefine, nil
|
||||
}
|
||||
|
||||
const (
|
||||
AlarmStatusClear = 0
|
||||
AlarmStatusActive = 1
|
||||
AlarmStatusClearString = "0"
|
||||
AlarmStatusActiveString = "1"
|
||||
)
|
||||
|
||||
const (
|
||||
ClearTypeUnclear = 0
|
||||
ClearTypeAutoClear = 1
|
||||
ClearTypeManualClear = 2
|
||||
)
|
||||
|
||||
type Alarm struct {
|
||||
Id int `json:"-" xorm:"pk 'id' autoincr"`
|
||||
AlarmSeq int `json:"alarmSeq"`
|
||||
AlarmId string `json:"alarmId" xorm:"alarm_id"`
|
||||
NeId string `json:"neId"`
|
||||
AlarmCode int `json:"alarmCode"`
|
||||
AlarmTitle string `json:"alarmTitle"`
|
||||
EventTime string `json:"eventTime"`
|
||||
AlarmType string `json:"alarmType"`
|
||||
OrigSeverity string `json:"origSeverity"`
|
||||
PerceivedSeverity string `json:"perceivedSeverity"`
|
||||
PVFlag string `json:"pvFlag" xorm:"pv_flag"`
|
||||
NeName string `json:"neName"`
|
||||
NeType string `json:"neType"`
|
||||
ObjectUid string `json:"objectUid" xorm:"object_uid"`
|
||||
ObjectName string `json:"objectName" xorm:"object_name"`
|
||||
ObjectType string `json:"objectType" xorm:"object_type"`
|
||||
LocationInfo string `json:"locationInfo"`
|
||||
Province string `json:"province"`
|
||||
AlarmStatus int `json:"alarmStatus" xorm:"alarm_status"`
|
||||
SpecificProblem string `json:"specificProblem"`
|
||||
SpecificProblemID string `json:"specificProblemID" xorm:"specific_problem_id"`
|
||||
AddInfo string `json:"addInfo"`
|
||||
|
||||
// ClearType int `json:"-" xorm:"clear_type"` // 0: Unclear, 1: Auto clear, 2: Manual clear
|
||||
// ClearTime sql.NullTime `json:"-" xorm:"clear_time"`
|
||||
}
|
||||
|
||||
type AlarmLog struct {
|
||||
NeType string `json:"neType" xorm:"ne_type"`
|
||||
NeId string `json:"neId" xorm:"ne_id"`
|
||||
AlarmSeq string `json:"alarmSeq" xorm:"alarm_seq"`
|
||||
AlarmId string `json:"alarmId" xorm:"alarm_id"`
|
||||
AlarmCode int `json:"alarmCode" xorm:"alarm_code"`
|
||||
AlarmStatus int `json:"alarmStatus" xorm:"alarm_status"`
|
||||
EventTime string `json:"eventTime" xorm:"event_time"`
|
||||
// ClearTime sql.NullTime `json:"clearTime" xorm:"clear_time"`
|
||||
LogTime string `json:"logTime" xorm:"-"`
|
||||
}
|
||||
|
||||
func XormInsertAlarm(alarm *Alarm) (int64, error) {
|
||||
log.Debug("XormInsertAlarm processing... ")
|
||||
|
||||
var affected int64 = 0
|
||||
|
||||
session := dbClient.xEngine.NewSession()
|
||||
defer session.Close()
|
||||
affected, err := session.InsertOne(alarm)
|
||||
session.Commit()
|
||||
return affected, err
|
||||
}
|
||||
|
||||
func XormInsertTalbeOne(tbInfo interface{}) (int64, error) {
|
||||
log.Debug("XormInsertTalbeOne processing... ")
|
||||
|
||||
var affected int64 = 0
|
||||
|
||||
session := dbClient.xEngine.NewSession()
|
||||
defer session.Close()
|
||||
affected, err := session.InsertOne(tbInfo)
|
||||
session.Commit()
|
||||
return affected, err
|
||||
}
|
||||
|
||||
func XormGetDataBySQL(sql string) (*[]map[string]string, error) {
|
||||
log.Debug("XormGetDataBySQL processing... ")
|
||||
|
||||
rows := make([]map[string]string, 0)
|
||||
rows, err := dbClient.xEngine.QueryString(sql)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to QueryString:", err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &rows, nil
|
||||
}
|
||||
|
||||
func XormGetTableOneByWhere(where string, tableName string) (*[]interface{}, error) {
|
||||
log.Debug("XormGetTableOneByWhere processing... ")
|
||||
|
||||
row := new([]interface{})
|
||||
|
||||
tb, err := dbClient.xEngine.TableInfo(tableName)
|
||||
if err != nil {
|
||||
log.Error("Failed to get TableInfo:", err)
|
||||
return nil, err
|
||||
}
|
||||
columns := tb.Columns()
|
||||
log.Debug("columns:", columns)
|
||||
has, err := dbClient.xEngine.Table(tableName).Where(where).Get(row)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to get table %s from database:%v", tableName, err)
|
||||
return nil, err
|
||||
} else if has == false {
|
||||
log.Infof("Not found data from %s where=%s", tableName, where)
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
log.Debugf("%s:%v", tableName, row)
|
||||
return row, nil
|
||||
}
|
||||
|
||||
func XormGetTableOneById(id int, tableName string) (*[]interface{}, error) {
|
||||
log.Debug("XormGetTableOneById processing... ")
|
||||
|
||||
rows := new([]interface{})
|
||||
has, err := dbClient.xEngine.Table(tableName).ID(id).Get(rows)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to get table %s from database:id=%d, %v", tableName, id, err)
|
||||
return nil, err
|
||||
} else if has == false {
|
||||
log.Infof("Not found table %s from database:id=%d", tableName, id)
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
log.Debugf("%s:%v", tableName, rows)
|
||||
return rows, nil
|
||||
}
|
||||
|
||||
func XormUpdateTableById(id int, tableName string, tbInfo interface{}, cols ...string) (int64, error) {
|
||||
log.Debug("XormUpdateTableById processing... ")
|
||||
|
||||
session := dbClient.xEngine.NewSession()
|
||||
defer session.Close()
|
||||
affected, err := session.Table(tableName).ID(id).MustCols(cols...).Update(tbInfo)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to update table %s from database:%v", tableName, err)
|
||||
return 0, err
|
||||
}
|
||||
session.Commit()
|
||||
|
||||
return affected, nil
|
||||
}
|
||||
|
||||
func XormUpdateTableByWhere(where string, tableName string, tbInfo interface{}) (int64, error) {
|
||||
log.Debug("XormUpdateTableByWhere processing... ")
|
||||
|
||||
session := dbClient.xEngine.NewSession()
|
||||
defer session.Close()
|
||||
affected, err := session.Table(tableName).Where(where).Update(tbInfo)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to update table %s from database:%v", tableName, err)
|
||||
return 0, err
|
||||
}
|
||||
session.Commit()
|
||||
|
||||
return affected, nil
|
||||
}
|
||||
49
crontask/etc/cm/cm-amf.yaml
Normal file
49
crontask/etc/cm/cm-amf.yaml
Normal file
@@ -0,0 +1,49 @@
|
||||
ManagedElement:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorName: ""
|
||||
ManagedBy: ""
|
||||
ManagementIpAddress: ""
|
||||
SwVersion: ""
|
||||
PatchInfo: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
|
||||
AmfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
SbiServiceList: ""
|
||||
AmfGuamiList: ""
|
||||
SnssaiList: ""
|
||||
MaxUser: ""
|
||||
RelativeCapacity: ""
|
||||
MaxGnbNum: ""
|
||||
|
||||
EpRpDynN8Amf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
EpRpDynN11Amf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
EpRpDynN12Amf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
IPResource:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
InterfaceType: ""
|
||||
LocIpV4AddrList: ""
|
||||
LocIpV6AddrList: ""
|
||||
48
crontask/etc/cm/cm-smf.yaml
Normal file
48
crontask/etc/cm/cm-smf.yaml
Normal file
@@ -0,0 +1,48 @@
|
||||
ManagedElement:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorName: ""
|
||||
ManagedBy: ""
|
||||
ManagementIpAddress: ""
|
||||
SwVersion: ""
|
||||
PatchInfo: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
|
||||
SmfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
SbiServiceList: ""
|
||||
MaxPduSessions: ""
|
||||
MaxQfi: ""
|
||||
UpfList: ""
|
||||
|
||||
AddrPool:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AddrType: "Static"
|
||||
IpVersion: ""
|
||||
AddrSegList: ""
|
||||
|
||||
EpRpDynN7Smf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
EpRpDynN10Smf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
IPResource:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
InterfaceType: ""
|
||||
LocIpV4AddrList: ""
|
||||
LocIpV6AddrList: ""
|
||||
39
crontask/etc/cm/cm-udm.yaml
Normal file
39
crontask/etc/cm/cm-udm.yaml
Normal file
@@ -0,0 +1,39 @@
|
||||
ManagedElement:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorName: ""
|
||||
ManagedBy: ""
|
||||
ManagementIpAddress: ""
|
||||
SwVersion: ""
|
||||
PatchInfo: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
|
||||
UdmFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
SbiServiceList: ""
|
||||
|
||||
UdrFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AddrType: "Static"
|
||||
IpVersion: ""
|
||||
AddrSegList: ""
|
||||
|
||||
AusfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
IPResource:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
InterfaceType: ""
|
||||
LocIpV4AddrList: ""
|
||||
LocIpV6AddrList: ""
|
||||
141
crontask/etc/cm/cm-upf.yaml
Normal file
141
crontask/etc/cm/cm-upf.yaml
Normal file
@@ -0,0 +1,141 @@
|
||||
ManagedElement:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorName: ""
|
||||
ManagedBy: ""
|
||||
ManagementIpAddress: ""
|
||||
SwVersion: ""
|
||||
PatchInfo: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
|
||||
InventoryUnitRack:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
SbiServiceList: ""
|
||||
MaxPduSessions: ""
|
||||
MaxQfi: ""
|
||||
UpfList: ""
|
||||
|
||||
InventoryUnitShelf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorUnitFamilyType: ""
|
||||
VendorUnitTypeNumber: ""
|
||||
VendorName: ""
|
||||
SerialNumber: ""
|
||||
VersionNumber: ""
|
||||
DateOfManufacture: ""
|
||||
DateOfLastService: ""
|
||||
ManufacturerData: ""
|
||||
RackPosition: ""
|
||||
|
||||
InventoryUnitPack:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorUnitFamilyType: ""
|
||||
VendorUnitTypeNumber: ""
|
||||
VendorName: ""
|
||||
SerialNumber: ""
|
||||
VersionNumber: ""
|
||||
DateOfManufacture: ""
|
||||
DateOfLastService: ""
|
||||
ManufacturerData: ""
|
||||
PortsInformation: ""
|
||||
PackPosition: ""
|
||||
SlotsOccupied: ""
|
||||
|
||||
InventoryUnitHost:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorUnitFamilyType: ""
|
||||
VendorUnitTypeNumber: ""
|
||||
VendorName: ""
|
||||
SerialNumber: ""
|
||||
VersionNumber: ""
|
||||
DateOfManufacture: ""
|
||||
DateOfLastService: ""
|
||||
ManufacturerData: ""
|
||||
HostPosition: ""
|
||||
NumberOfCpu: ""
|
||||
MemSize: ""
|
||||
HardDiskSize: ""
|
||||
|
||||
InventoryUnitAccessory:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
VendorUnitFamilyType: ""
|
||||
VendorUnitTypeNumber: ""
|
||||
VendorName: ""
|
||||
SerialNumber: ""
|
||||
VersionNumber: ""
|
||||
DateOfManufacture: ""
|
||||
DateOfLastService: ""
|
||||
ManufacturerData: ""
|
||||
AccessoryPosition: ""
|
||||
AccessoryType: ""
|
||||
AddtionalInformation: ""
|
||||
|
||||
UpfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
MaxQosFlows: ""
|
||||
MaxThroughput: ""
|
||||
|
||||
EpRpDynN9Upf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
EpRpDynN3Upf:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
LocIpAddrList: ""
|
||||
FarIpSubnetworkList: ""
|
||||
|
||||
AmfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
|
||||
SmfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
|
||||
UdrFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
|
||||
AusfFunction:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
AdministrativeState: ""
|
||||
OperationalState: ""
|
||||
VnfInstanceId: ""
|
||||
Fqdn: ""
|
||||
|
||||
IPResource:
|
||||
Id: ""
|
||||
UserLabel: ""
|
||||
InterfaceType: ""
|
||||
LocIpV4AddrList: ""
|
||||
LocIpV6AddrList: ""
|
||||
41
crontask/etc/crontask.yaml
Normal file
41
crontask/etc/crontask.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
# file: log file name
|
||||
# level: /trace/debug/info/error/warn/error/fatal, default: debug
|
||||
# duration: saved days, default is 30 days
|
||||
logger:
|
||||
file: d:/goprojects/ems.agt/crontask/log/crontask.log
|
||||
level: trace
|
||||
duration: 24
|
||||
count: 10
|
||||
|
||||
omc:
|
||||
name: SZOMC1
|
||||
hosturi: http://127.0.0.1:3040
|
||||
hostno: S001
|
||||
province: GD
|
||||
netabbr: HX
|
||||
vendor: RJ
|
||||
|
||||
process:
|
||||
|
||||
tasks:
|
||||
file: ./etc/tasks.yaml
|
||||
|
||||
database:
|
||||
type: mysql
|
||||
user: root
|
||||
password: 1000omc@kp!
|
||||
host: 127.0.0.1
|
||||
port: 33066
|
||||
name: omc_db
|
||||
backup: d:/goprojects/ems.agt/restagent/database
|
||||
|
||||
# northbound interface, cm/pm
|
||||
nbi:
|
||||
cm:
|
||||
cfgfiledir: ./etc/cm
|
||||
xmlfiledir: ./ftp/cm
|
||||
version: V1.0.1
|
||||
pm:
|
||||
cfgfiledir: ./etc/pm
|
||||
xmlfiledir: ./ftp/pm
|
||||
version: V1.0.1
|
||||
150
crontask/etc/tasks.yaml
Normal file
150
crontask/etc/tasks.yaml
Normal file
@@ -0,0 +1,150 @@
|
||||
# example:
|
||||
# tasks:
|
||||
# - name: test # task comment
|
||||
# uri: # restful uri
|
||||
# params: # params of url
|
||||
# interval: 30 # do sometion in the interval
|
||||
# unit: Seconds #Seconds/Minutes/Hours/Days/Weeks, Monday/Tuesday/.../Sunday,
|
||||
# at: 00:10:00 # do at time such as xx:xx:xx
|
||||
# do: HelloWorldTask # (Do what: callback function)
|
||||
#
|
||||
# Attention: must restart crontask after modified this file
|
||||
#
|
||||
tasks:
|
||||
- name: test # task comment
|
||||
status: Active #active/inactive
|
||||
uri: # restful uri
|
||||
params: # params of http url
|
||||
body: # body of http request
|
||||
interval: 60 # do sometion in the interval
|
||||
unit: Seconds #Seconds/Minutes/Hours/Days/Weeks, Monday/Tuesday/.../Sunday,
|
||||
at: 00:10:00 # do at time such as xx:xx:xx when unit such as Day/Days/Mondays...
|
||||
do: TaskHelloWorld # (Do what: callback function)
|
||||
- name: clear expired history alarm
|
||||
uri: /api/rest/databaseManagement/v1/omc_db/alarm
|
||||
params: WHERE=now()+>+ADDDATE(event_time,+interval+(SELECT+`value`+FROM+config+WHERE+config_tag='historyDuration')+day)+and+alarm_status='0'
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 00:10:00
|
||||
do: TaskDeleteExpiredRecord
|
||||
- name: clear deleted custom pm kpi
|
||||
uri: /api/rest/databaseManagement/v1/omc_db/pm_custom_title
|
||||
params: WHERE=now()+>+ADDDATE(update_time,+interval+(SELECT+`value`+FROM+config+WHERE+config_tag='keepPMCKpi')+day)+and+status='Deleted'
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 00:15:00
|
||||
do: TaskDeleteExpiredRecord
|
||||
- name: update expired user session
|
||||
uri: /api/rest/databaseManagement/v1/omc_db/session
|
||||
params: WHERE=NOW()+>+ADDDATE(shake_time,+interval+expires+second)+and+status='online'
|
||||
body: '{"session":{"status":"offline"}}'
|
||||
interval: 30
|
||||
unit: Seconds
|
||||
at:
|
||||
do: TaskUpdateTable
|
||||
- name: clear expired log
|
||||
uri:
|
||||
params:
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 00:50:00
|
||||
do: TaskDeleteExpiredRecord
|
||||
- name: Backup measure data
|
||||
uri: /api/rest/databaseManagement/v1/omc_db/measure_data
|
||||
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','date','task_id','ne_name','rm_uid','ne_type','granul_option','kpi_code','kpi_id','kpi_ext','start_time','end_time','value','timestamp'+union+select+id,date,task_id,ne_name,rm_uid,ne_type,granul_option,kpi_code,kpi_id,kpi_ext,start_time,end_time,value,timestamp+from+measure_data)+b
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 00:20:00
|
||||
do: TaskDBBackupCSVGetBySQL
|
||||
- name: Backup operation log
|
||||
uri: /api/rest/databaseManagement/v1/omc_db/operation_log
|
||||
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'op_id','account_name','op_ip','subsys_tag','op_type','op_content','op_result','begin_time','end_time','vnf_flag','log_time'+union+select+op_id,account_name,op_ip,subsys_tag,op_type,op_content,op_result,begin_time,end_time,vnf_flag,log_time+from+operation_log)+b
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 00:25:00
|
||||
do: TaskDBBackupCSVGetBySQL
|
||||
- name: handshake to NF
|
||||
status: Active
|
||||
uri: /api/rest/systemManagement/v1/elementType/%s/objectType/systemState
|
||||
params:
|
||||
interval: 10
|
||||
unit: Seconds
|
||||
at:
|
||||
do: TaskHandShakeToNF
|
||||
- name: Export CM from NF
|
||||
uri: /api/rest/systemManagement/v1/elementType/%s/objectType/cm
|
||||
params: ne_id=%s
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 00:15
|
||||
do: TaskExportCmFromNF
|
||||
- name: Generate NRM xml file
|
||||
uri:
|
||||
params:
|
||||
interval: 1
|
||||
unit: Day
|
||||
at: 00:00,06:00,12:00,18:00
|
||||
do: GenCmXmlFile
|
||||
- name: Task of Generate measure threshold alarm
|
||||
status: Inactive
|
||||
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
|
||||
params: RJHXEMSPM10200
|
||||
interval: 10
|
||||
unit: Seconds
|
||||
at:
|
||||
do: TaskGenMeasureThresholdAlarm
|
||||
- name: Task of Generate license alarm
|
||||
status: Inactive
|
||||
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
|
||||
params: RJHXEMSCM10100
|
||||
interval: 1
|
||||
unit: Days
|
||||
at: 20:01
|
||||
do: TaskGenLicenseAlarm
|
||||
- name: Task of Generate NE system state alarm
|
||||
status: Active
|
||||
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
|
||||
params: RJHXEMSSM10000
|
||||
interval: 5
|
||||
unit: Seconds
|
||||
at:
|
||||
do: TaskGenNeStateAlarm
|
||||
- name: Task of Generate Measure Report Timeout
|
||||
status: Active
|
||||
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
|
||||
params: RJHXEMSPM10201
|
||||
interval: 10
|
||||
unit: Seconds
|
||||
at:
|
||||
do: TaskGenMeasureReportTimeoutAlarm
|
||||
- name: Monitor proces list and write system log
|
||||
uri: /api/rest/databaseManagement/v1/omc_db/system_log
|
||||
params:
|
||||
body:
|
||||
interval: 5
|
||||
unit: Seconds
|
||||
at:
|
||||
do: TaskWriteSystemLog
|
||||
# - name: Import CM to NF
|
||||
# uri: /api/rest/systemManagement/v1/elementType/udm/objectType/cm
|
||||
# params: ne_id=SZ_01
|
||||
# interval: 15
|
||||
# unit: Seconds
|
||||
# at:
|
||||
# do: TaskImportCmToNF
|
||||
crontab:
|
||||
# - name: 每隔1分钟执行
|
||||
# tab: 0 */1 * * * ? // crontab: rule like linux crontab
|
||||
# do: CronHelloWorldTask // function name to call
|
||||
# params:
|
||||
- name: Generate PM xml file
|
||||
status: Active
|
||||
tab: 5,20,35,50 * * * *
|
||||
do: GenPmXmlFile
|
||||
uri: this is uri
|
||||
params: Generating PM xml file
|
||||
# - name: Import CM to NF
|
||||
# tab: 0 * * * * *
|
||||
# do: TaskImportCmToNF
|
||||
# uri: /api/rest/systemManagement/v1/elementType/udm/objectType/cm
|
||||
# params: ne_id=SZ_01
|
||||
BIN
crontask/export/smf-sz_01-etc-20230611001500.zip
Normal file
BIN
crontask/export/smf-sz_01-etc-20230611001500.zip
Normal file
Binary file not shown.
BIN
crontask/export/smf-sz_01-etc-20230612001500.zip
Normal file
BIN
crontask/export/smf-sz_01-etc-20230612001500.zip
Normal file
Binary file not shown.
BIN
crontask/export/smf-sz_01-etc-20230615001500.zip
Normal file
BIN
crontask/export/smf-sz_01-etc-20230615001500.zip
Normal file
Binary file not shown.
BIN
crontask/export/udm-sz_01-etc-20230611002024.zip
Normal file
BIN
crontask/export/udm-sz_01-etc-20230611002024.zip
Normal file
Binary file not shown.
BIN
crontask/export/udm-sz_01-etc-20230615001514.zip
Normal file
BIN
crontask/export/udm-sz_01-etc-20230615001514.zip
Normal file
Binary file not shown.
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806000000.xml
Normal file
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806000000.xml
Normal file
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 00:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN8Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN11Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN12Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_T01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">AMF_SZ_T01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">AmfGuamiList</N>
|
||||
<N i="3">Fqdn</N>
|
||||
<N i="4">Id</N>
|
||||
<N i="5">MaxGnbNum</N>
|
||||
<N i="6">MaxUser</N>
|
||||
<N i="7">OperationalState</N>
|
||||
<N i="8">RelativeCapacity</N>
|
||||
<N i="9">SbiServiceList</N>
|
||||
<N i="10">SnssaiList</N>
|
||||
<N i="11">UserLabel</N>
|
||||
<N i="12">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SZ_T01</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">Enabled</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">AMF_SZ_T01</V>
|
||||
<V i="12">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806060000.xml
Normal file
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806060000.xml
Normal file
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 06:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN12Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_T01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">AMF_SZ_T01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">AmfGuamiList</N>
|
||||
<N i="3">Fqdn</N>
|
||||
<N i="4">Id</N>
|
||||
<N i="5">MaxGnbNum</N>
|
||||
<N i="6">MaxUser</N>
|
||||
<N i="7">OperationalState</N>
|
||||
<N i="8">RelativeCapacity</N>
|
||||
<N i="9">SbiServiceList</N>
|
||||
<N i="10">SnssaiList</N>
|
||||
<N i="11">UserLabel</N>
|
||||
<N i="12">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SZ_T01</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">Enabled</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">AMF_SZ_T01</V>
|
||||
<V i="12">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN8Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN11Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806120000.xml
Normal file
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806120000.xml
Normal file
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 12:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN8Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN11Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN12Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_T01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">AMF_SZ_T01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">AmfGuamiList</N>
|
||||
<N i="3">Fqdn</N>
|
||||
<N i="4">Id</N>
|
||||
<N i="5">MaxGnbNum</N>
|
||||
<N i="6">MaxUser</N>
|
||||
<N i="7">OperationalState</N>
|
||||
<N i="8">RelativeCapacity</N>
|
||||
<N i="9">SbiServiceList</N>
|
||||
<N i="10">SnssaiList</N>
|
||||
<N i="11">UserLabel</N>
|
||||
<N i="12">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SZ_T01</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">Enabled</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">AMF_SZ_T01</V>
|
||||
<V i="12">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806180000.xml
Normal file
140
crontask/ftp/cm/20230806/CM-HX-AMF-16.1.1-20230806180000.xml
Normal file
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 18:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">AMF_SZ_T01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">AmfGuamiList</N>
|
||||
<N i="3">Fqdn</N>
|
||||
<N i="4">Id</N>
|
||||
<N i="5">MaxGnbNum</N>
|
||||
<N i="6">MaxUser</N>
|
||||
<N i="7">OperationalState</N>
|
||||
<N i="8">RelativeCapacity</N>
|
||||
<N i="9">SbiServiceList</N>
|
||||
<N i="10">SnssaiList</N>
|
||||
<N i="11">UserLabel</N>
|
||||
<N i="12">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SZ_T01</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">Enabled</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">AMF_SZ_T01</V>
|
||||
<V i="12">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN8Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN11Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN12Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_T01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 00:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AUSF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
</DataFile>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 06:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AUSF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
</DataFile>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 12:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AUSF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
</DataFile>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 18:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AUSF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
</DataFile>
|
||||
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806000000.xml
Normal file
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806000000.xml
Normal file
@@ -0,0 +1,138 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 00:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>SMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">SMF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">SMF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN7Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN10Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806060000.xml
Normal file
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806060000.xml
Normal file
@@ -0,0 +1,138 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 06:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>SMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN7Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN10Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">SMF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">SMF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806120000.xml
Normal file
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806120000.xml
Normal file
@@ -0,0 +1,138 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 12:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>SMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">SMF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN7Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN10Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">SMF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806180000.xml
Normal file
138
crontask/ftp/cm/20230806/CM-HX-SMF-16.1.1-20230806180000.xml
Normal file
@@ -0,0 +1,138 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 18:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>SMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN10Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">SMF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">SMF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN7Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806000000.xml
Normal file
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806000000.xml
Normal file
@@ -0,0 +1,235 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 00:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UDM</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>UdmFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">SbiServiceList</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_02</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_03</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_R01</V>
|
||||
<V i="7">2dd55b4-9018-41f4-af75-28b6828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_011</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">SZ_02</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">SZ_03</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">SZ_R01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_02</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_03</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_R01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806060000.xml
Normal file
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806060000.xml
Normal file
@@ -0,0 +1,235 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 06:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UDM</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_02</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_03</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_R01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdmFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">SbiServiceList</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_02</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_03</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_R01</V>
|
||||
<V i="7">2dd55b4-9018-41f4-af75-28b6828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_011</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">SZ_02</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">SZ_03</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">SZ_R01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806120000.xml
Normal file
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806120000.xml
Normal file
@@ -0,0 +1,235 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 12:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UDM</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_011</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">SZ_02</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">SZ_03</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">SZ_R01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_02</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_03</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_R01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdmFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">SbiServiceList</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_02</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_03</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_R01</V>
|
||||
<V i="7">2dd55b4-9018-41f4-af75-28b6828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806180000.xml
Normal file
235
crontask/ftp/cm/20230806/CM-HX-UDM-16.1.1-20230806180000.xml
Normal file
@@ -0,0 +1,235 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 18:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UDM</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_02</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_03</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_R01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdmFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">SbiServiceList</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_02</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_03</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_R01</V>
|
||||
<V i="7">2dd55b4-9018-41f4-af75-28b6828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_011</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">SZ_02</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">SZ_03</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">SZ_R01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806000000.xml
Normal file
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806000000.xml
Normal file
@@ -0,0 +1,648 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 00:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UPF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">MaxQosFlows</N>
|
||||
<N i="4">MaxThroughput</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_RD109</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitRack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitHost</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">HardDiskSize</N>
|
||||
<N i="4">HostPosition</N>
|
||||
<N i="5">Id</N>
|
||||
<N i="6">ManufacturerData</N>
|
||||
<N i="7">MemSize</N>
|
||||
<N i="8">NumberOfCpu</N>
|
||||
<N i="9">SerialNumber</N>
|
||||
<N i="10">UserLabel</N>
|
||||
<N i="11">VendorName</N>
|
||||
<N i="12">VendorUnitFamilyType</N>
|
||||
<N i="13">VendorUnitTypeNumber</N>
|
||||
<N i="14">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SZ_01</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_01</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD_109</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_RD109</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_TEST_239</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitPack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">PackPosition</N>
|
||||
<N i="6">PortsInformation</N>
|
||||
<N i="7">SerialNumber</N>
|
||||
<N i="8">SlotsOccupied</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitAccessory</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AccessoryPosition</N>
|
||||
<N i="2">AccessoryType</N>
|
||||
<N i="3">AddtionalInformation</N>
|
||||
<N i="4">DateOfLastService</N>
|
||||
<N i="5">DateOfManufacture</N>
|
||||
<N i="6">Id</N>
|
||||
<N i="7">ManufacturerData</N>
|
||||
<N i="8">SerialNumber</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">SZ_01</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_RD_109</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">UPF_SZ_RD_109</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">UPF_SZ_TEST_239</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_RD109</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_TEST_239</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitShelf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">RackPosition</N>
|
||||
<N i="6">SerialNumber</N>
|
||||
<N i="7">UserLabel</N>
|
||||
<N i="8">VendorName</N>
|
||||
<N i="9">VendorUnitFamilyType</N>
|
||||
<N i="10">VendorUnitTypeNumber</N>
|
||||
<N i="11">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_01</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_RD109</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_TEST_239</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806060000.xml
Normal file
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806060000.xml
Normal file
@@ -0,0 +1,648 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 06:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UPF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitPack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">PackPosition</N>
|
||||
<N i="6">PortsInformation</N>
|
||||
<N i="7">SerialNumber</N>
|
||||
<N i="8">SlotsOccupied</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitRack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_RD109</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_TEST_239</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">MaxQosFlows</N>
|
||||
<N i="4">MaxThroughput</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_RD109</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">UPF_SZ_RD_109</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">UPF_SZ_TEST_239</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitShelf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">RackPosition</N>
|
||||
<N i="6">SerialNumber</N>
|
||||
<N i="7">UserLabel</N>
|
||||
<N i="8">VendorName</N>
|
||||
<N i="9">VendorUnitFamilyType</N>
|
||||
<N i="10">VendorUnitTypeNumber</N>
|
||||
<N i="11">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_01</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_RD109</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_TEST_239</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitHost</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">HardDiskSize</N>
|
||||
<N i="4">HostPosition</N>
|
||||
<N i="5">Id</N>
|
||||
<N i="6">ManufacturerData</N>
|
||||
<N i="7">MemSize</N>
|
||||
<N i="8">NumberOfCpu</N>
|
||||
<N i="9">SerialNumber</N>
|
||||
<N i="10">UserLabel</N>
|
||||
<N i="11">VendorName</N>
|
||||
<N i="12">VendorUnitFamilyType</N>
|
||||
<N i="13">VendorUnitTypeNumber</N>
|
||||
<N i="14">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SZ_01</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_01</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD_109</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_RD109</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_TEST_239</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitAccessory</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AccessoryPosition</N>
|
||||
<N i="2">AccessoryType</N>
|
||||
<N i="3">AddtionalInformation</N>
|
||||
<N i="4">DateOfLastService</N>
|
||||
<N i="5">DateOfManufacture</N>
|
||||
<N i="6">Id</N>
|
||||
<N i="7">ManufacturerData</N>
|
||||
<N i="8">SerialNumber</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">SZ_01</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_RD_109</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806120000.xml
Normal file
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806120000.xml
Normal file
@@ -0,0 +1,648 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 12:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UPF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitHost</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">HardDiskSize</N>
|
||||
<N i="4">HostPosition</N>
|
||||
<N i="5">Id</N>
|
||||
<N i="6">ManufacturerData</N>
|
||||
<N i="7">MemSize</N>
|
||||
<N i="8">NumberOfCpu</N>
|
||||
<N i="9">SerialNumber</N>
|
||||
<N i="10">UserLabel</N>
|
||||
<N i="11">VendorName</N>
|
||||
<N i="12">VendorUnitFamilyType</N>
|
||||
<N i="13">VendorUnitTypeNumber</N>
|
||||
<N i="14">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SZ_01</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_01</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD_109</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_RD109</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_TEST_239</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitRack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">UPF_SZ_RD_109</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">UPF_SZ_TEST_239</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitShelf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">RackPosition</N>
|
||||
<N i="6">SerialNumber</N>
|
||||
<N i="7">UserLabel</N>
|
||||
<N i="8">VendorName</N>
|
||||
<N i="9">VendorUnitFamilyType</N>
|
||||
<N i="10">VendorUnitTypeNumber</N>
|
||||
<N i="11">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_01</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_RD109</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_TEST_239</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitPack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">PackPosition</N>
|
||||
<N i="6">PortsInformation</N>
|
||||
<N i="7">SerialNumber</N>
|
||||
<N i="8">SlotsOccupied</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitAccessory</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AccessoryPosition</N>
|
||||
<N i="2">AccessoryType</N>
|
||||
<N i="3">AddtionalInformation</N>
|
||||
<N i="4">DateOfLastService</N>
|
||||
<N i="5">DateOfManufacture</N>
|
||||
<N i="6">Id</N>
|
||||
<N i="7">ManufacturerData</N>
|
||||
<N i="8">SerialNumber</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">SZ_01</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_RD_109</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_RD109</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_TEST_239</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">MaxQosFlows</N>
|
||||
<N i="4">MaxThroughput</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_RD109</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806180000.xml
Normal file
648
crontask/ftp/cm/20230806/CM-HX-UPF-16.1.1-20230806180000.xml
Normal file
@@ -0,0 +1,648 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-06 18:00:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UPF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">UPF_SZ_RD_109</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">UPF_SZ_TEST_239</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitRack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitPack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">PackPosition</N>
|
||||
<N i="6">PortsInformation</N>
|
||||
<N i="7">SerialNumber</N>
|
||||
<N i="8">SlotsOccupied</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitAccessory</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AccessoryPosition</N>
|
||||
<N i="2">AccessoryType</N>
|
||||
<N i="3">AddtionalInformation</N>
|
||||
<N i="4">DateOfLastService</N>
|
||||
<N i="5">DateOfManufacture</N>
|
||||
<N i="6">Id</N>
|
||||
<N i="7">ManufacturerData</N>
|
||||
<N i="8">SerialNumber</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">SZ_01</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_RD_109</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">MaxQosFlows</N>
|
||||
<N i="4">MaxThroughput</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_RD109</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_RD109</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_TEST_239</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitHost</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">HardDiskSize</N>
|
||||
<N i="4">HostPosition</N>
|
||||
<N i="5">Id</N>
|
||||
<N i="6">ManufacturerData</N>
|
||||
<N i="7">MemSize</N>
|
||||
<N i="8">NumberOfCpu</N>
|
||||
<N i="9">SerialNumber</N>
|
||||
<N i="10">UserLabel</N>
|
||||
<N i="11">VendorName</N>
|
||||
<N i="12">VendorUnitFamilyType</N>
|
||||
<N i="13">VendorUnitTypeNumber</N>
|
||||
<N i="14">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SZ_01</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_01</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD_109</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_RD109</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_TEST_239</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitShelf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">RackPosition</N>
|
||||
<N i="6">SerialNumber</N>
|
||||
<N i="7">UserLabel</N>
|
||||
<N i="8">VendorName</N>
|
||||
<N i="9">VendorUnitFamilyType</N>
|
||||
<N i="10">VendorUnitTypeNumber</N>
|
||||
<N i="11">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_01</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_RD109</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_TEST_239</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
140
crontask/ftp/cm/20230810/CM-HX-AMF-16.1.1-20230810000001.xml
Normal file
140
crontask/ftp/cm/20230810/CM-HX-AMF-16.1.1-20230810000001.xml
Normal file
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 00:00:01</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_T01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">AMF_SZ_T01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">AmfGuamiList</N>
|
||||
<N i="3">Fqdn</N>
|
||||
<N i="4">Id</N>
|
||||
<N i="5">MaxGnbNum</N>
|
||||
<N i="6">MaxUser</N>
|
||||
<N i="7">OperationalState</N>
|
||||
<N i="8">RelativeCapacity</N>
|
||||
<N i="9">SbiServiceList</N>
|
||||
<N i="10">SnssaiList</N>
|
||||
<N i="11">UserLabel</N>
|
||||
<N i="12">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SZ_T01</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">Enabled</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">AMF_SZ_T01</V>
|
||||
<V i="12">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN8Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN11Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN12Amf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXAMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="AMF_SZ_T01" PVFlag="PNF" VMID="kylin10.0-001-AMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_T01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">AMF_SZ_T01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 00:00:01</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>AUSF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
</DataFile>
|
||||
138
crontask/ftp/cm/20230810/CM-HX-SMF-16.1.1-20230810000001.xml
Normal file
138
crontask/ftp/cm/20230810/CM-HX-SMF-16.1.1-20230810000001.xml
Normal file
@@ -0,0 +1,138 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 00:00:01</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>SMF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">SMF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN7Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN10Smf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SMF_SZ_01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXSMFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="SMF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-SMF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">SMF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
235
crontask/ftp/cm/20230810/CM-HX-UDM-16.1.1-20230810000001.xml
Normal file
235
crontask/ftp/cm/20230810/CM-HX-UDM-16.1.1-20230810000001.xml
Normal file
@@ -0,0 +1,235 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 00:00:01</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UDM</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_02</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_03</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UDM_SZ_R01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdmFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">SbiServiceList</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_02</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_03</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UDM_SZ_R01</V>
|
||||
<V i="7">2dd55b4-9018-41f4-af75-28b6828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AddrSegList</N>
|
||||
<N i="2">AddrType</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">IpVersion</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_011</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_02</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_03</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">Static</V>
|
||||
<V i="3">SZ_R01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_011</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_02</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_03</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_R01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUDMBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_01" PVFlag="VNF" VMID="kylin10.0-001-UDM" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_011</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_02" PVFlag="PNF" VMID="kylin10.0-002-UDM" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">SZ_02</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_02</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_03" PVFlag="PNF" VMID="kylin10.0-003-UDM" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">SZ_03</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_03</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUDMBJ0D04" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UDM_SZ_R01" PVFlag="PNF" VMID="kylin10.0-004-UDM" VNFInstanceID="2dd55b4-9018-41f4-af75-28b6828788">
|
||||
<V i="1">SZ_R01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UDM_SZ_R01</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
648
crontask/ftp/cm/20230810/CM-HX-UPF-16.1.1-20230810000001.xml
Normal file
648
crontask/ftp/cm/20230810/CM-HX-UPF-16.1.1-20230810000001.xml
Normal file
@@ -0,0 +1,648 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DataFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///usr/loal/omc/etc/schema/cm-schema.xsd">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 00:00:01</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UPF</ElementType>
|
||||
<CmVersion>16.1.1</CmVersion>
|
||||
</FileHeader>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitPack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">PackPosition</N>
|
||||
<N i="6">PortsInformation</N>
|
||||
<N i="7">SerialNumber</N>
|
||||
<N i="8">SlotsOccupied</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitAccessory</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AccessoryPosition</N>
|
||||
<N i="2">AccessoryType</N>
|
||||
<N i="3">AddtionalInformation</N>
|
||||
<N i="4">DateOfLastService</N>
|
||||
<N i="5">DateOfManufacture</N>
|
||||
<N i="6">Id</N>
|
||||
<N i="7">ManufacturerData</N>
|
||||
<N i="8">SerialNumber</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VendorName</N>
|
||||
<N i="11">VendorUnitFamilyType</N>
|
||||
<N i="12">VendorUnitTypeNumber</N>
|
||||
<N i="13">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">SZ_01</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_RD_109</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">Ruijie Network</V>
|
||||
<V i="11">-</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UdrFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>IPResource</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">Id</N>
|
||||
<N i="2">InterfaceType</N>
|
||||
<N i="3">LocIpV4AddrList</N>
|
||||
<N i="4">LocIpV6AddrList</N>
|
||||
<N i="5">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">SZ_01</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">UPF_SZ_RD_109</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">UPF_SZ_TEST_239</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AusfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">ManagedBy</N>
|
||||
<N i="4">ManagementIpAddress</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">PatchInfo</N>
|
||||
<N i="7">SwVersion</N>
|
||||
<N i="8">UserLabel</N>
|
||||
<N i="9">VendorName</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_01</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_RD109</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">16.1.1</V>
|
||||
<V i="8">UPF_SZ_TEST_239</V>
|
||||
<V i="9">Ruijie Network</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitRack</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">MaxPduSessions</N>
|
||||
<N i="5">MaxQfi</N>
|
||||
<N i="6">OperationalState</N>
|
||||
<N i="7">SbiServiceList</N>
|
||||
<N i="8">UpfList</N>
|
||||
<N i="9">UserLabel</N>
|
||||
<N i="10">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_01</V>
|
||||
<V i="10">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_RD109</V>
|
||||
<V i="10">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">Enabled</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">UPF_SZ_TEST_239</V>
|
||||
<V i="10">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">MaxQosFlows</N>
|
||||
<N i="4">MaxThroughput</N>
|
||||
<N i="5">OperationalState</N>
|
||||
<N i="6">UserLabel</N>
|
||||
<N i="7">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_01</V>
|
||||
<V i="7">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_RD109</V>
|
||||
<V i="7">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">Enabled</V>
|
||||
<V i="6">UPF_SZ_TEST_239</V>
|
||||
<V i="7">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">FarIpSubnetworkList</N>
|
||||
<N i="2">Id</N>
|
||||
<N i="3">LocIpAddrList</N>
|
||||
<N i="4">UserLabel</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">SZ_01</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_01</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_RD_109</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_RD109</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">UPF_SZ_TEST_239</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">UPF_SZ_TEST_239</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitShelf</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">ManufacturerData</N>
|
||||
<N i="5">RackPosition</N>
|
||||
<N i="6">SerialNumber</N>
|
||||
<N i="7">UserLabel</N>
|
||||
<N i="8">VendorName</N>
|
||||
<N i="9">VendorUnitFamilyType</N>
|
||||
<N i="10">VendorUnitTypeNumber</N>
|
||||
<N i="11">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_01</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_RD109</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">-</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">UPF_SZ_TEST_239</V>
|
||||
<V i="8">Ruijie Network</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">-</V>
|
||||
<V i="11">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>InventoryUnitHost</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">DateOfLastService</N>
|
||||
<N i="2">DateOfManufacture</N>
|
||||
<N i="3">HardDiskSize</N>
|
||||
<N i="4">HostPosition</N>
|
||||
<N i="5">Id</N>
|
||||
<N i="6">ManufacturerData</N>
|
||||
<N i="7">MemSize</N>
|
||||
<N i="8">NumberOfCpu</N>
|
||||
<N i="9">SerialNumber</N>
|
||||
<N i="10">UserLabel</N>
|
||||
<N i="11">VendorName</N>
|
||||
<N i="12">VendorUnitFamilyType</N>
|
||||
<N i="13">VendorUnitTypeNumber</N>
|
||||
<N i="14">VersionNumber</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">SZ_01</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_01</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_RD_109</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_RD109</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">-</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">-</V>
|
||||
<V i="4">-</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">-</V>
|
||||
<V i="7">-</V>
|
||||
<V i="8">-</V>
|
||||
<V i="9">-</V>
|
||||
<V i="10">UPF_SZ_TEST_239</V>
|
||||
<V i="11">Ruijie Network</V>
|
||||
<V i="12">-</V>
|
||||
<V i="13">-</V>
|
||||
<V i="14">-</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
<Objects>
|
||||
<ObjectType>AmfFunction</ObjectType>
|
||||
<FieldName>
|
||||
<N i="1">AdministrativeState</N>
|
||||
<N i="2">Fqdn</N>
|
||||
<N i="3">Id</N>
|
||||
<N i="4">OperationalState</N>
|
||||
<N i="5">UserLabel</N>
|
||||
<N i="6">VnfInstanceId</N>
|
||||
</FieldName>
|
||||
<FieldValue>
|
||||
<Object rmUID="01000HXUPFBJ0D01" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_01" PVFlag="PNF" VMID="kylin10.0-001-UPF" VNFInstanceID="2ad55b4-6018-41f4-af45-28b3828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">SZ_01</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_01</V>
|
||||
<V i="6">2ad55b4-6018-41f4-af45-28b3828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D02" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_RD109" PVFlag="PNF" VMID="kylin10.0-002-UPF" VNFInstanceID="2bd55b4-7018-41f4-af55-28b4828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_RD_109</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_RD109</V>
|
||||
<V i="6">2bd55b4-7018-41f4-af55-28b4828788</V>
|
||||
</Object>
|
||||
<Object rmUID="01000HXUPFBJ0D03" Dn="DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325" UserLabel="UPF_SZ_TEST_239" PVFlag="PNF" VMID="kylin10.0-003-UPF" VNFInstanceID="2cd55b4-8018-41f4-af65-28b5828788">
|
||||
<V i="1">Unlocked</V>
|
||||
<V i="2">-</V>
|
||||
<V i="3">UPF_SZ_TEST_239</V>
|
||||
<V i="4">Enabled</V>
|
||||
<V i="5">UPF_SZ_TEST_239</V>
|
||||
<V i="6">2cd55b4-8018-41f4-af65-28b5828788</V>
|
||||
</Object>
|
||||
</FieldValue>
|
||||
</Objects>
|
||||
</DataFile>
|
||||
@@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PmFile xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 02:20:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<Period>15</Period>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>SMF</ElementType>
|
||||
<PmVersion>16.1.1</PmVersion>
|
||||
<StartTime>2023-08-10 02:00:00 +0800 CST</StartTime>
|
||||
</FileHeader>
|
||||
<Measurements>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.FailCreatePduSession._Ns.46</N>
|
||||
<N i="2">SMF.FailCreatePduSession._Dnn.46</N>
|
||||
<N i="3">SMF.FailCreatePduSession._Dnn.82</N>
|
||||
<N i="4">SMF.AttSmfModifyPduSession._Ns</N>
|
||||
<N i="5">SMF.AttCreatePduSession._Ns</N>
|
||||
<N i="6">SMF.FailCreatePduSession.46</N>
|
||||
<N i="7">SMF.FailCreatePduSession._Ns</N>
|
||||
<N i="8">SMF.FailCreatePduSession._Ns.28</N>
|
||||
<N i="9">SMF.FailCreatePduSession._Ns.27</N>
|
||||
<N i="10">SMF.FailCreatePduSession._Ns.33</N>
|
||||
<N i="11">SMF.SuccSmfModifyPduSession._Dnn</N>
|
||||
<N i="12">SMF.SuccSmfModifyBearerResponse.Epsfb</N>
|
||||
<N i="13">SMF.SuccCreatePduSession._Ns</N>
|
||||
<N i="14">SMF.FailCreatePduSession</N>
|
||||
<N i="15">SMF.FailCreatePduSession.29</N>
|
||||
<N i="16">SMF.FailCreatePduSession._Dnn</N>
|
||||
<N i="17">SMF.FailCreatePduSession._Dnn.29</N>
|
||||
<N i="18">SMF.FailCreatePduSession._Dnn.33</N>
|
||||
<N i="19">SMF.FailCreatePduSession.68</N>
|
||||
<N i="20">SMF.FailCreatePduSession._Ns.82</N>
|
||||
<N i="21">SMF.SuccSmfModifyPduSession._Ns</N>
|
||||
<N i="22">SMF.AttSmfModifyPduSession.Epsfb</N>
|
||||
<N i="23">SMF.FailSmfModifyPduSession._Dnn</N>
|
||||
<N i="24">SMF.FailCreatePduSession._Cause</N>
|
||||
<N i="25">SMF.FailCreatePduSession.33</N>
|
||||
<N i="26">SMF.FailCreatePduSession.26</N>
|
||||
<N i="27">SMF.FailCreatePduSession._Dnn.68</N>
|
||||
<N i="28">SMF.AttCreatePduSession._Dnn</N>
|
||||
<N i="29">SMF.SuccCreatePduSession</N>
|
||||
<N i="30">SMF.FailCreatePduSession._Ns.29</N>
|
||||
<N i="31">SMF.FailCreatePduSession._Dnn.28</N>
|
||||
<N i="32">SMF.AttSmfModifyPduSession</N>
|
||||
<N i="33">SMF.FailSmfModifyPduSession</N>
|
||||
<N i="34">SMF.FailSmfModifyPduSession._Ns</N>
|
||||
<N i="35">SMF.AttCreatePduSession</N>
|
||||
<N i="36">SMF.FailCreatePduSession._Ns.68</N>
|
||||
<N i="37">SMF.AttSmfModifyPduSession._Dnn</N>
|
||||
<N i="38">SMF.SuccCreatePduSession._Dnn</N>
|
||||
<N i="39">SMF.FailCreatePduSession.82</N>
|
||||
<N i="40">SMF.FailCreatePduSession.28</N>
|
||||
<N i="41">SMF.FailCreatePduSession.27</N>
|
||||
<N i="42">SMF.SuccSmfModifyPduSession</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="6">0</V>
|
||||
<V i="12">0</V>
|
||||
<V i="14">0</V>
|
||||
<V i="15">0</V>
|
||||
<V i="19">0</V>
|
||||
<V i="22">0</V>
|
||||
<V i="25">0</V>
|
||||
<V i="26">0</V>
|
||||
<V i="29">0</V>
|
||||
<V i="32">0</V>
|
||||
<V i="33">0</V>
|
||||
<V i="35">0</V>
|
||||
<V i="39">0</V>
|
||||
<V i="40">0</V>
|
||||
<V i="41">0</V>
|
||||
<V i="42">0</V>
|
||||
<CV i="1"></CV>
|
||||
<CV i="2"></CV>
|
||||
<CV i="3"></CV>
|
||||
<CV i="4"></CV>
|
||||
<CV i="5"></CV>
|
||||
<CV i="7"></CV>
|
||||
<CV i="8"></CV>
|
||||
<CV i="9"></CV>
|
||||
<CV i="10"></CV>
|
||||
<CV i="11"></CV>
|
||||
<CV i="13"></CV>
|
||||
<CV i="16"></CV>
|
||||
<CV i="17"></CV>
|
||||
<CV i="18"></CV>
|
||||
<CV i="20"></CV>
|
||||
<CV i="21"></CV>
|
||||
<CV i="23"></CV>
|
||||
<CV i="24"></CV>
|
||||
<CV i="27"></CV>
|
||||
<CV i="28"></CV>
|
||||
<CV i="30"></CV>
|
||||
<CV i="31"></CV>
|
||||
<CV i="34"></CV>
|
||||
<CV i="36"></CV>
|
||||
<CV i="37"></CV>
|
||||
<CV i="38"></CV>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>EpRpDynN7Smf</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.SmPlcyCtrlCreateSucc</N>
|
||||
<N i="2">SMF.SmPlcyCtrlDeleteReq</N>
|
||||
<N i="3">SMF.SmPlcyCtrlUpdateReq</N>
|
||||
<N i="4">SMF.SmPlcyCtrlUpdateSucc</N>
|
||||
<N i="5">SMF.SmPlcyCtrlDeleteSucc</N>
|
||||
<N i="6">SMF.SmPlcyCtrlCreateReq</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
<V i="6">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>EpRpDynN10Smf</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.UecmRegFail.Unknown5GSub</N>
|
||||
<N i="2">SMF.UecmRegFail.RoamNotAllowed</N>
|
||||
<N i="3">SMF.UecmRegReq</N>
|
||||
<N i="4">SMF.UecmDeregReq</N>
|
||||
<N i="5">SMF.UecmRegFail._Cause</N>
|
||||
<N i="6">SMF.UecmRegFail.DnnNotAllowed</N>
|
||||
<N i="7">SMF.UecmDeregSucc</N>
|
||||
<N i="8">SMF.UecmRegSucc</N>
|
||||
<N i="9">SMF.UecmRegFail</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="6">0</V>
|
||||
<V i="7">0</V>
|
||||
<V i="8">0</V>
|
||||
<V i="9">0</V>
|
||||
<CV i="5"></CV>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.MeanPduSession</N>
|
||||
<N i="2">SMF.MeanPduSession._Ns</N>
|
||||
<N i="3">SMF.MeanPduSession._Dnn</N>
|
||||
<N i="4">SMF.MeanQf</N>
|
||||
<N i="5">SMF.MeanQf._Ns</N>
|
||||
<N i="6">SMF.MeanQf._Dnn</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
<V i="4">0</V>
|
||||
<CV i="2"></CV>
|
||||
<CV i="3"></CV>
|
||||
<CV i="5"></CV>
|
||||
<CV i="6"></CV>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">ME.MeanMeLoad</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.MeanAllcAddr</N>
|
||||
<N i="2">SMF.MeanAllcAddr._Ns</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
<CV i="2"></CV>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.MaxPduSession._Dnn</N>
|
||||
<N i="2">SMF.MaxQf</N>
|
||||
<N i="3">SMF.MaxQf._Ns</N>
|
||||
<N i="4">SMF.MaxQf._Dnn</N>
|
||||
<N i="5">SMF.MaxPduSession</N>
|
||||
<N i="6">SMF.MaxPduSession._Ns</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="2">0</V>
|
||||
<V i="5">0</V>
|
||||
<CV i="1"></CV>
|
||||
<CV i="3"></CV>
|
||||
<CV i="4"></CV>
|
||||
<CV i="6"></CV>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>AddrPool</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.MaxAllcAddr</N>
|
||||
<N i="2">SMF.MaxAllcAddr._Ns</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
<CV i="2"></CV>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>SmfFunction</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">SMF.PduSessionCreateTime</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="" Dn="" UserLabel="">
|
||||
<V i="1">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
</PmFile>
|
||||
@@ -0,0 +1,240 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PmFile xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<FileHeader>
|
||||
<TimeStamp>2023-08-10 02:20:00</TimeStamp>
|
||||
<TimeZone>UTC+8</TimeZone>
|
||||
<Period>15</Period>
|
||||
<VendorName>Ruijie Network</VendorName>
|
||||
<ElementType>UPF</ElementType>
|
||||
<PmVersion>16.1.1</PmVersion>
|
||||
<StartTime>2023-08-10 01:45:00 +0800 CST</StartTime>
|
||||
</FileHeader>
|
||||
<Measurements>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">upf.pfcpsessionestabreq</N>
|
||||
<N i="2">upf.pfcpsessionestabsucc</N>
|
||||
<N i="3">upf.pfcpsessionestabfail</N>
|
||||
<N i="4">upf.pfcpsessionmodifyreq</N>
|
||||
<N i="5">upf.pfcpsessionmodifysucc</N>
|
||||
<N i="6">upf.pfcpsessionmodifyfail</N>
|
||||
<N i="7">upf.meanqosflows</N>
|
||||
<N i="8">upf.maxqosflows</N>
|
||||
<N i="9">upf.n6incpkt</N>
|
||||
<N i="10">upf.n6incpktipv6</N>
|
||||
<N i="11">upf.n6incpktipv6._dnn</N>
|
||||
<N i="12">upf.n6ogpkt</N>
|
||||
<N i="13">upf.n6ogpktipv6</N>
|
||||
<N i="14">upf.n6ogpktipv6._dnn</N>
|
||||
<N i="15">upf.n6incoct</N>
|
||||
<N i="16">upf.n6incoctipv6</N>
|
||||
<N i="17">upf.n6incoctipv6._dnn</N>
|
||||
<N i="18">upf.n6ogoct</N>
|
||||
<N i="19">upf.n6ogoctipv6</N>
|
||||
<N i="20">upf.n6ogoctipv6._dnn</N>
|
||||
<N i="21">upf.n6discpkt</N>
|
||||
<N i="22">upf.n6discpktipv6</N>
|
||||
<N i="23">upf.n6discpktipv6._dnn</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="239UPF" Dn="TEST239" UserLabel="UPF_SZ_TEST_239">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
<V i="6">0</V>
|
||||
<V i="7">0</V>
|
||||
<V i="8">0</V>
|
||||
<V i="9">0</V>
|
||||
<V i="10">0</V>
|
||||
<V i="11">0</V>
|
||||
<V i="12">0</V>
|
||||
<V i="13">0</V>
|
||||
<V i="14">0</V>
|
||||
<V i="15">0</V>
|
||||
<V i="16">0</V>
|
||||
<V i="17">0</V>
|
||||
<V i="18">0</V>
|
||||
<V i="19">0</V>
|
||||
<V i="20">0</V>
|
||||
<V i="21">0</V>
|
||||
<V i="22">0</V>
|
||||
<V i="23">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">upf.n3incpkt</N>
|
||||
<N i="2">upf.n3ogpkt</N>
|
||||
<N i="3">upf.n3incoct</N>
|
||||
<N i="4">upf.n3ogoct</N>
|
||||
<N i="5">upf.n3discpkt</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="239UPF" Dn="TEST239" UserLabel="UPF_SZ_TEST_239">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">upf.n9aincpkt</N>
|
||||
<N i="2">upf.n9aogpkt</N>
|
||||
<N i="3">upf.n9aincoct</N>
|
||||
<N i="4">upf.n9aogoct</N>
|
||||
<N i="5">upf.n9adiscpkt</N>
|
||||
<N i="6">upf.n9cincpkt</N>
|
||||
<N i="7">upf.n9cogpkt</N>
|
||||
<N i="8">upf.n9cincoct</N>
|
||||
<N i="9">upf.n9cogoct</N>
|
||||
<N i="10">upf.n9cdiscpkt</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="239UPF" Dn="TEST239" UserLabel="UPF_SZ_TEST_239">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
<V i="6">0</V>
|
||||
<V i="7">0</V>
|
||||
<V i="8">0</V>
|
||||
<V i="9">0</V>
|
||||
<V i="10">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">me.meanmeload</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="239UPF" Dn="TEST239" UserLabel="UPF_SZ_TEST_239">
|
||||
<V i="1">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>UpfFunction</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">upf.pfcpsessionestabreq</N>
|
||||
<N i="2">upf.pfcpsessionestabsucc</N>
|
||||
<N i="3">upf.pfcpsessionestabfail</N>
|
||||
<N i="4">upf.pfcpsessionmodifyreq</N>
|
||||
<N i="5">upf.pfcpsessionmodifysucc</N>
|
||||
<N i="6">upf.pfcpsessionmodifyfail</N>
|
||||
<N i="7">upf.meanqosflows</N>
|
||||
<N i="8">upf.maxqosflows</N>
|
||||
<N i="9">upf.n6incpkt</N>
|
||||
<N i="10">upf.n6incpktipv6</N>
|
||||
<N i="11">upf.n6incpktipv6._dnn</N>
|
||||
<N i="12">upf.n6ogpkt</N>
|
||||
<N i="13">upf.n6ogpktipv6</N>
|
||||
<N i="14">upf.n6ogpktipv6._dnn</N>
|
||||
<N i="15">upf.n6incoct</N>
|
||||
<N i="16">upf.n6incoctipv6</N>
|
||||
<N i="17">upf.n6incoctipv6._dnn</N>
|
||||
<N i="18">upf.n6ogoct</N>
|
||||
<N i="19">upf.n6ogoctipv6</N>
|
||||
<N i="20">upf.n6ogoctipv6._dnn</N>
|
||||
<N i="21">upf.n6discpkt</N>
|
||||
<N i="22">upf.n6discpktipv6</N>
|
||||
<N i="23">upf.n6discpktipv6._dnn</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="upf1" Dn="5gc" UserLabel="upf1">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
<V i="6">0</V>
|
||||
<V i="7">0</V>
|
||||
<V i="8">0</V>
|
||||
<V i="9">0</V>
|
||||
<V i="10">0</V>
|
||||
<V i="11">0</V>
|
||||
<V i="12">0</V>
|
||||
<V i="13">0</V>
|
||||
<V i="14">0</V>
|
||||
<V i="15">0</V>
|
||||
<V i="16">0</V>
|
||||
<V i="17">0</V>
|
||||
<V i="18">0</V>
|
||||
<V i="19">0</V>
|
||||
<V i="20">0</V>
|
||||
<V i="21">0</V>
|
||||
<V i="22">0</V>
|
||||
<V i="23">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>EpRpDynN3Upf</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">upf.n3incpkt</N>
|
||||
<N i="2">upf.n3ogpkt</N>
|
||||
<N i="3">upf.n3incoct</N>
|
||||
<N i="4">upf.n3ogoct</N>
|
||||
<N i="5">upf.n3discpkt</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="upf1" Dn="5gc" UserLabel="upf1">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>EpRpDynN9Upf</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">upf.n9aincpkt</N>
|
||||
<N i="2">upf.n9aogpkt</N>
|
||||
<N i="3">upf.n9aincoct</N>
|
||||
<N i="4">upf.n9aogoct</N>
|
||||
<N i="5">upf.n9adiscpkt</N>
|
||||
<N i="6">upf.n9cincpkt</N>
|
||||
<N i="7">upf.n9cogpkt</N>
|
||||
<N i="8">upf.n9cincoct</N>
|
||||
<N i="9">upf.n9cogoct</N>
|
||||
<N i="10">upf.n9cdiscpkt</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="upf1" Dn="5gc" UserLabel="upf1">
|
||||
<V i="1">0</V>
|
||||
<V i="2">0</V>
|
||||
<V i="3">0</V>
|
||||
<V i="4">0</V>
|
||||
<V i="5">0</V>
|
||||
<V i="6">0</V>
|
||||
<V i="7">0</V>
|
||||
<V i="8">0</V>
|
||||
<V i="9">0</V>
|
||||
<V i="10">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
<Measurements>
|
||||
<ObjectType>ManagedElement</ObjectType>
|
||||
<PmName>
|
||||
<N i="1">me.meanmeload</N>
|
||||
</PmName>
|
||||
<PmData>
|
||||
<Object rmUID="upf1" Dn="5gc" UserLabel="upf1">
|
||||
<V i="1">0</V>
|
||||
</Object>
|
||||
</PmData>
|
||||
</Measurements>
|
||||
</PmFile>
|
||||
165
crontask/gencmxml.go
Normal file
165
crontask/gencmxml.go
Normal file
@@ -0,0 +1,165 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"os"
|
||||
"sort"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
cmschema "ems.agt/crontask/cm/schema"
|
||||
"ems.agt/lib/global"
|
||||
"ems.agt/lib/log"
|
||||
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
const (
|
||||
// Header is a generic XML header suitable for use with the output of Marshal.
|
||||
// This is not automatically added to any output of this package,
|
||||
// it is provided as a convenience.
|
||||
Header = `<?xml version="1.0" encoding="UTF-8"?>` + "\n"
|
||||
)
|
||||
|
||||
const (
|
||||
AdminStateLocked = "Locked"
|
||||
AdminStateUnlocked = "Unlocked"
|
||||
AdminStateShuttingdown = "ShuttingDown"
|
||||
OperationStateDisabled = "Disabled"
|
||||
OperationStateEnabled = "Enabled"
|
||||
)
|
||||
|
||||
func (t *TaskFunc) GenCmXmlFile(uri, params, body string) {
|
||||
log.Debug("GenCmXmlFile processing ...")
|
||||
for _, neType := range neTypes {
|
||||
t.GenNFXmlFile(neType)
|
||||
}
|
||||
}
|
||||
|
||||
func (t *TaskFunc) ReadCmYaml(cmfile string) (map[string]interface{}, error) {
|
||||
log.Debug("cmfile:", cmfile)
|
||||
file, err := os.ReadFile(cmfile)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return nil, err
|
||||
}
|
||||
log.Debug("file:", file)
|
||||
resultMap := make(map[string]interface{})
|
||||
err = yaml.Unmarshal(file, resultMap)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
log.Debug("resultMap:", resultMap)
|
||||
return resultMap, nil
|
||||
}
|
||||
|
||||
func (t *TaskFunc) GenNFXmlFile(neType string) error {
|
||||
var nes []NeInfo
|
||||
_, err := XormGetNeInfoByType(neType, &nes)
|
||||
if err != nil {
|
||||
log.Error("Failed to get all ne info:", err)
|
||||
return err
|
||||
}
|
||||
|
||||
cmfile := fmt.Sprintf("%s/cm-%s.yaml", yamlConfig.NBI.CM.CfgFileDir, strings.ToLower(neType))
|
||||
|
||||
resultMap, _ := t.ReadCmYaml(cmfile)
|
||||
|
||||
ti := time.Now()
|
||||
timestamp := ti.Format("2006-01-02 15:04:05")
|
||||
timefile := ti.Format("20060102150405")
|
||||
date := ti.Format("20060102")
|
||||
_, offset := ti.Zone()
|
||||
var tzOffset string
|
||||
if offset >= 0 {
|
||||
tzOffset = "UTC+" + strconv.Itoa(offset/3600)
|
||||
} else {
|
||||
tzOffset = "UTC" + strconv.Itoa(offset/3600)
|
||||
}
|
||||
|
||||
nrmFile := new(cmschema.DataFile)
|
||||
|
||||
nrmFile.FileHeader = cmschema.FileHeader{
|
||||
TimeStamp: timestamp,
|
||||
TimeZone: tzOffset,
|
||||
VendorName: "Ruijie Network",
|
||||
ElementType: neType,
|
||||
CmVersion: global.Version,
|
||||
}
|
||||
|
||||
nrmFile.XsiAttr = "http://www.w3.org/2001/XMLSchema-instance"
|
||||
nrmFile.XsiLoc = "file:///usr/loal/omc/etc/schema/cm-schema.xsd"
|
||||
|
||||
for k, e := range resultMap {
|
||||
objects := cmschema.Objects{ObjectType: k}
|
||||
|
||||
sortResult := make(map[string]string)
|
||||
keys := make([]string, 0)
|
||||
for key, value := range e.(map[string]interface{}) {
|
||||
sortResult[key] = fmt.Sprintf("%v", value)
|
||||
keys = append(keys, key)
|
||||
}
|
||||
|
||||
sort.Strings(keys)
|
||||
|
||||
for s, ne := range nes {
|
||||
rmUID := fmt.Sprintf("01000HX%sBJ0D0%d", neType, s+1)
|
||||
vmId := fmt.Sprintf("kylin10.0-00%d-%s", s+1, neType)
|
||||
vnfInstanceID := fmt.Sprintf("2%xd55b4-%d018-41f4-af%d5-28b%d828788", s+10, s+6, s+4, s+3)
|
||||
object := cmschema.Object{RmUIDAttr: rmUID,
|
||||
DnAttr: "DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325",
|
||||
UserLabelAttr: ne.NeName, PVFlagAttr: ne.PvFlag, VMIDAttr: vmId, VNFInstanceIDAttr: vnfInstanceID}
|
||||
|
||||
i := 1
|
||||
for _, p := range keys {
|
||||
if s == 0 {
|
||||
objects.FieldName.N = append(objects.FieldName.N, cmschema.N{IAttr: i, Value: p})
|
||||
}
|
||||
var v string
|
||||
switch p {
|
||||
case "Id":
|
||||
v = ne.NeId
|
||||
case "UserLabel":
|
||||
v = ne.NeName
|
||||
case "VendorName":
|
||||
v = "Ruijie Network"
|
||||
case "SwVersion":
|
||||
v = global.Version
|
||||
case "PatchInfo":
|
||||
v = "-"
|
||||
case "AdministrativeState":
|
||||
v = AdminStateUnlocked
|
||||
case "OperationalState":
|
||||
v = OperationStateEnabled
|
||||
case "VnfInstanceId":
|
||||
v = vnfInstanceID
|
||||
default:
|
||||
if sortResult[p] == "" {
|
||||
v = "-"
|
||||
} else {
|
||||
v = fmt.Sprintf("%s", sortResult[p])
|
||||
}
|
||||
}
|
||||
object.V = append(object.V, cmschema.V{IAttr: i, Value: v})
|
||||
i++
|
||||
}
|
||||
objects.FieldValue.Object = append(objects.FieldValue.Object, object)
|
||||
}
|
||||
nrmFile.Objects = append(nrmFile.Objects, objects)
|
||||
}
|
||||
|
||||
folderPath := global.CreateDir(date, yamlConfig.NBI.CM.XmlFileDir)
|
||||
x, _ := xml.MarshalIndent(nrmFile, "", " ")
|
||||
x = append([]byte(xml.Header), x...)
|
||||
xmlfile := fmt.Sprintf("%s/CM-HX-%s-%s-%s.xml", folderPath, neType, global.Version, timefile)
|
||||
err = os.WriteFile(xmlfile, x, 0664)
|
||||
if err != nil {
|
||||
log.Error("Failed to write xml file:", err)
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
267
crontask/genpmxml.go
Normal file
267
crontask/genpmxml.go
Normal file
@@ -0,0 +1,267 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"regexp"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
pmschema "ems.agt/crontask/pm/schema"
|
||||
"ems.agt/lib/global"
|
||||
"ems.agt/lib/log"
|
||||
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
var (
|
||||
neTypes = []string{"AMF", "SMF", "UDM", "UPF", "AUSF"}
|
||||
)
|
||||
|
||||
func (t *TaskFunc) GenPmXmlFile(uri, params, body string) {
|
||||
for _, neType := range neTypes {
|
||||
log.Debugf("GenPmXmlFile process %s xml file", neType)
|
||||
t.GenNFPMXmlFile(neType)
|
||||
}
|
||||
}
|
||||
|
||||
func (t *TaskFunc) ReadPmYaml(cmfile string) (map[string]interface{}, error) {
|
||||
log.Debug("cmfile:", cmfile)
|
||||
file, err := ioutil.ReadFile(cmfile)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return nil, err
|
||||
}
|
||||
log.Debug("file:", file)
|
||||
resultMap := make(map[string]interface{})
|
||||
err = yaml.Unmarshal(file, resultMap)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
log.Debug("resultMap:", resultMap)
|
||||
return resultMap, nil
|
||||
}
|
||||
|
||||
func (t *TaskFunc) IsPseudoSubPmName(pmName string) bool {
|
||||
return strings.Contains(pmName, "._")
|
||||
}
|
||||
|
||||
func (t *TaskFunc) GenNFPMXmlFile(neType string) error {
|
||||
var nes []NeInfo
|
||||
_, err := XormGetNeInfoByType(neType, &nes)
|
||||
if err != nil {
|
||||
log.Error("Failed to get all ne info:", err)
|
||||
return err
|
||||
}
|
||||
|
||||
// cfile := fmt.Sprintf("%s/pm-%s.yaml", yamlConfig.NBI.PM.CfgFileDir, strings.ToLower(neType))
|
||||
|
||||
// resultMap, _ := t.ReadPmYaml(cfile)
|
||||
|
||||
ti := time.Now()
|
||||
var startTime string
|
||||
timestamp := ti.Format("2006-01-02 15:04:05")
|
||||
|
||||
index := global.GetCurrentTimeSliceIndexByPeriod(ti, 15)
|
||||
date := time.Now().Format("2006-01-02")
|
||||
log.Debugf("date: %s index:%d", date, index)
|
||||
|
||||
_, offset := ti.Zone()
|
||||
var tzOffset string
|
||||
if offset >= 0 {
|
||||
tzOffset = "UTC+" + strconv.Itoa(offset/3600)
|
||||
} else {
|
||||
tzOffset = "UTC" + strconv.Itoa(offset/3600)
|
||||
}
|
||||
|
||||
pmFile := new(pmschema.PmFile)
|
||||
|
||||
var pms []NorthboundPm
|
||||
_, err = XormGetNorthboundPm(date, index, neType, &pms)
|
||||
if err != nil {
|
||||
log.Error("Failed to get northbound_pm:", err)
|
||||
return err
|
||||
}
|
||||
|
||||
if len(pms) == 0 {
|
||||
log.Errorf("%s:%v", neType, global.ErrPMNotFoundData)
|
||||
return global.ErrPMNotFoundData
|
||||
}
|
||||
|
||||
pmFile.XsAttr = "http://www.w3.org/2001/XMLSchema"
|
||||
pmFile.XsiAttr = "http://www.w3.org/2001/XMLSchema-instance"
|
||||
/*
|
||||
objectTypes := make([]string, 0)
|
||||
sortValues := make(map[string]interface{})
|
||||
keys := make([]string, 0)
|
||||
if len(pms) > 0 {
|
||||
for _, data := range pms[0].Datas {
|
||||
for _, pmData := range data.PmDatas {
|
||||
sortValues[pmData.PmName] = pmData.SubDatas
|
||||
keys = append(keys, pmData.PmName)
|
||||
}
|
||||
objectTypes = append(objectTypes, data.ObjectType)
|
||||
}
|
||||
sort.Strings(keys)
|
||||
sort.Strings(objectTypes)
|
||||
}
|
||||
log.Debug("objectTypes:", objectTypes)
|
||||
log.Debug("keys:", keys)
|
||||
*/
|
||||
var measurement pmschema.Measurements
|
||||
for _, pm := range pms {
|
||||
for _, pdata := range pm.Datas {
|
||||
measurement = pmschema.Measurements{ObjectType: pdata.ObjectType}
|
||||
measurement.PmData.Object.RmUIDAttr = pm.RmUID
|
||||
measurement.PmData.Object.DnAttr = pm.Dn
|
||||
measurement.PmData.Object.UserLabelAttr = pm.NeName
|
||||
startTime = pm.StartTime
|
||||
|
||||
i := 1
|
||||
for _, pmData := range pdata.KPIs {
|
||||
measurement.PmName.N = append(measurement.PmName.N, pmschema.N{IAttr: i, Value: pmData.KPIID})
|
||||
cv := pmschema.CV{IAttr: i}
|
||||
isPseudo := true
|
||||
value := "0"
|
||||
reg := regexp.MustCompile(`_\w+`)
|
||||
//sns := strings.Split(pmData.KPIID, "_")
|
||||
for _, v := range pmData.KPIValues {
|
||||
if fmt.Sprintf("%v", v.Name) == "Total" {
|
||||
isPseudo = false
|
||||
value = fmt.Sprintf("%v", v.Value)
|
||||
break
|
||||
} else {
|
||||
isPseudo = true
|
||||
//if len(sns) > 1 {
|
||||
// sns := strings.Split(sns[1], ".")
|
||||
//}
|
||||
sn := reg.ReplaceAllString(pmData.KPIID, v.Name)
|
||||
//sn := sns[0] + v.Name
|
||||
// cv.NV = append(cv.NV, pmschema.NV{SN: sn, SV: fmt.Sprintf("%v", v.Value)})
|
||||
cv.SN = append(cv.SN, sn)
|
||||
cv.SV = append(cv.SV, fmt.Sprintf("%v", v.Value))
|
||||
}
|
||||
}
|
||||
if isPseudo == false {
|
||||
measurement.PmData.Object.V = append(measurement.PmData.Object.V, pmschema.V{IAttr: i, Value: value})
|
||||
} else {
|
||||
measurement.PmData.Object.CV = append(measurement.PmData.Object.CV, cv)
|
||||
}
|
||||
|
||||
i++
|
||||
//measurement.PmData.Object.V = append(measurement.PmData.Object.V, pmschema.V{IAttr: i, Value: sortValues[pmName].Value})
|
||||
//measurement.PmData.Object.CV = sortValues[pmName].Value
|
||||
}
|
||||
pmFile.Measurements = append(pmFile.Measurements, measurement)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
pmFile.FileHeader = pmschema.FileHeader{
|
||||
TimeStamp: timestamp,
|
||||
TimeZone: tzOffset,
|
||||
Period: 15,
|
||||
VendorName: "Ruijie Network",
|
||||
ElementType: neType,
|
||||
PmVersion: global.Version,
|
||||
StartTime: startTime,
|
||||
}
|
||||
/*
|
||||
for _, obj := range objectTypes {
|
||||
measurement := pmschema.Measurements{ObjectType: obj}
|
||||
|
||||
for _, pm := range pms {
|
||||
measurement.PmData.Object.RmUIDAttr = pm.RmUID
|
||||
measurement.PmData.Object.DnAttr = pm.Dn
|
||||
measurement.PmData.Object.UserLabelAttr = pm.NeName
|
||||
for _, pdata := range pm.Datas {
|
||||
measurement := pmschema.Measurements{ObjectType: pdata.ObjectType}
|
||||
if pdata.ObjectType == obj {
|
||||
i := 1
|
||||
for _, pmName := range keys {
|
||||
measurement.PmName.N = append(measurement.PmName.N, pmschema.N{IAttr: i, Value: pmName})
|
||||
measurement.PmData.Object.V = append(measurement.PmData.Object.V, pmschema.V{IAttr: i, Value: "1"})
|
||||
i++
|
||||
//measurement.PmData.Object.V = append(measurement.PmData.Object.V, pmschema.V{IAttr: i, Value: sortValues[pmName].Value})
|
||||
//measurement.PmData.Object.CV = sortValues[pmName].Value
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pmFile.Measurements = append(pmFile.Measurements, measurement)
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
for k, pm := range pms {
|
||||
measurement := pmschema.Measurements{ObjectType: "gold_kpi"}
|
||||
|
||||
for s, ne := range nes {
|
||||
rmUID := fmt.Sprintf("01000HX%sBJ0D0%d", neType, s+1)
|
||||
vmId := fmt.Sprintf("kylin10.0-00%d-%s", s+1, neType)
|
||||
measurement.PmName.
|
||||
vnfInstanceID := fmt.Sprintf("2%xd55b4-%d018-41f4-af%d5-28b%d828788", s+10, s+6, s+4, s+3)
|
||||
object := pmschema.Object{RmUIDAttr: rmUID,
|
||||
DnAttr: "DC=www.ruijie.com.cn,SubNetwork=10001,SubNetwork=114214,ManagedElement=325",
|
||||
UserLabelAttr: ne.NeName, PVFlagAttr: ne.PvFlag, VMIDAttr: vmId, VNFInstanceIDAttr: vnfInstanceID}
|
||||
|
||||
i := 1
|
||||
for _, p := range keys {
|
||||
if s == 0 {
|
||||
objects.FieldName.N = append(objects.FieldName.N, pmschema.N{IAttr: i, Value: p})
|
||||
}
|
||||
var v string
|
||||
switch p {
|
||||
case "Id":
|
||||
v = ne.NeId
|
||||
case "UserLabel":
|
||||
v = ne.NeName
|
||||
case "VendorName":
|
||||
v = "Ruijie Network"
|
||||
case "SwVersion":
|
||||
v = global.Version
|
||||
case "PatchInfo":
|
||||
v = "-"
|
||||
case "AdministrativeState":
|
||||
v = AdminStateUnlocked
|
||||
case "OperationalState":
|
||||
v = OperationStateEnabled
|
||||
case "VnfInstanceId":
|
||||
v = vnfInstanceID
|
||||
default:
|
||||
if sortResult[p] == "" {
|
||||
v = "-"
|
||||
} else {
|
||||
v = fmt.Sprintf("%s", sortResult[p])
|
||||
}
|
||||
}
|
||||
object.V = append(object.V, cmschema.V{IAttr: i, Value: v})
|
||||
i++
|
||||
}
|
||||
objects.FieldValue.Object = append(objects.FieldValue.Object, object)
|
||||
}
|
||||
pmFile.Measurements = append(pmFile.Measurements, measurement)
|
||||
}
|
||||
*/
|
||||
|
||||
x, _ := xml.MarshalIndent(pmFile, "", " ")
|
||||
x = append([]byte(xml.Header), x...)
|
||||
|
||||
folderName := global.GetFmtTimeString(global.DateTime, startTime, global.DateHour)
|
||||
folderPath := global.CreateDir(folderName, yamlConfig.NBI.PM.XmlFileDir)
|
||||
timefile := global.GetFmtTimeString(global.DateTime, startTime, global.DateData)
|
||||
xmlfile := fmt.Sprintf("%s/PM-%s-%s-%s-15-001.xml", folderPath, neType, global.Version, timefile)
|
||||
log.Debugf("folderPath:%s, xmlfile:%s", folderPath, xmlfile)
|
||||
err = os.WriteFile(xmlfile, x, 0664)
|
||||
if err != nil {
|
||||
log.Error("Failed to write xml file:", err)
|
||||
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
18
crontask/makefile
Normal file
18
crontask/makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
# Makefile for OMC-OMC-crontask project
|
||||
|
||||
PROJECT = OMC
|
||||
VERSION = 16.1.1
|
||||
LIBDIR = ems.agt/lib
|
||||
BINNAME = crontask
|
||||
|
||||
.PHONY: build $(BINNAME)
|
||||
build $(BINNAME):
|
||||
go build -o $(BINNAME) -v -ldflags "-X '$(LIBDIR)/global.Version=$(VERSION)' \
|
||||
-X '$(LIBDIR)/global.BuildTime=`date`' \
|
||||
-X '$(LIBDIR)/global.GoVer=`go version`'"
|
||||
|
||||
run: $(BINNAME)
|
||||
./$(BINNAME)
|
||||
|
||||
clean:
|
||||
rm ./$(BINNAME)
|
||||
77
crontask/pm/schema/pm-schema.go
Normal file
77
crontask/pm/schema/pm-schema.go
Normal file
@@ -0,0 +1,77 @@
|
||||
// Code generated by xgen. DO NOT EDIT.
|
||||
|
||||
package pmschema
|
||||
|
||||
import "encoding/xml"
|
||||
|
||||
// FileHeader ...
|
||||
type FileHeader struct {
|
||||
TimeStamp string `xml:"TimeStamp"`
|
||||
TimeZone string `xml:"TimeZone"`
|
||||
Period int `xml:"Period"`
|
||||
VendorName string `xml:"VendorName"`
|
||||
ElementType string `xml:"ElementType"`
|
||||
PmVersion string `xml:"PmVersion"`
|
||||
StartTime string `xml:"StartTime"`
|
||||
}
|
||||
|
||||
// N ...
|
||||
type N struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
Value string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// PmName ...
|
||||
type PmName struct {
|
||||
N []N `xml:"N"`
|
||||
}
|
||||
|
||||
// V ...
|
||||
type V struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
Value string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// NV ...
|
||||
type NV struct {
|
||||
XMLName xml.Name `xml:"-"`
|
||||
SN string `xml:"SN"`
|
||||
SV string `xml:"SV"`
|
||||
}
|
||||
|
||||
// CV ...
|
||||
type CV struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
// NV []NV `xml:"NV"`
|
||||
SN []string `xml:"SN"`
|
||||
SV []string `xml:"SV"`
|
||||
}
|
||||
|
||||
// Object ...
|
||||
type Object struct {
|
||||
RmUIDAttr string `xml:"rmUID,attr"`
|
||||
DnAttr string `xml:"Dn,attr"`
|
||||
UserLabelAttr string `xml:"UserLabel,attr"`
|
||||
V []V `xml:"V"`
|
||||
CV []CV `xml:"CV"`
|
||||
}
|
||||
|
||||
// PmData ...
|
||||
type PmData struct {
|
||||
Object Object `xml:"Object"`
|
||||
}
|
||||
|
||||
// Measurements ...
|
||||
type Measurements struct {
|
||||
ObjectType string `xml:"ObjectType"`
|
||||
PmName PmName `xml:"PmName"`
|
||||
PmData PmData `xml:"PmData"`
|
||||
}
|
||||
|
||||
// PmFile ...
|
||||
type PmFile struct {
|
||||
FileHeader FileHeader `xml:"FileHeader"`
|
||||
Measurements []Measurements `xml:"Measurements"`
|
||||
XsAttr string `xml:"xmlns:xs,attr"`
|
||||
XsiAttr string `xml:"xmlns:xsi,attr"`
|
||||
}
|
||||
65
crontask/pm/schema/pm-schema.go.bak
Normal file
65
crontask/pm/schema/pm-schema.go.bak
Normal file
@@ -0,0 +1,65 @@
|
||||
// Code generated by xgen. DO NOT EDIT.
|
||||
|
||||
package pmschema
|
||||
|
||||
// FileHeader ...
|
||||
type FileHeader struct {
|
||||
TimeStamp string `xml:"TimeStamp"`
|
||||
TimeZone string `xml:"TimeZone"`
|
||||
Period int `xml:"Period"`
|
||||
VendorName string `xml:"VendorName"`
|
||||
ElementType string `xml:"ElementType"`
|
||||
PmVersion string `xml:"PmVersion"`
|
||||
StartTime string `xml:"StartTime"`
|
||||
}
|
||||
|
||||
// N ...
|
||||
type N struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
Value string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// PmName ...
|
||||
type PmName struct {
|
||||
N *N `xml:"N"`
|
||||
}
|
||||
|
||||
// V ...
|
||||
type V struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
Value string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// CV ...
|
||||
type CV struct {
|
||||
IAttr int `xml:"i,attr"`
|
||||
SN []string `xml:"SN"`
|
||||
SV []string `xml:"SV"`
|
||||
}
|
||||
|
||||
// Object ...
|
||||
type Object struct {
|
||||
RmUIDAttr string `xml:"rmUID,attr"`
|
||||
DnAttr string `xml:"Dn,attr"`
|
||||
UserLabelAttr string `xml:"UserLabel,attr"`
|
||||
V []*V `xml:"V"`
|
||||
CV []*CV `xml:"CV"`
|
||||
}
|
||||
|
||||
// PmData ...
|
||||
type PmData struct {
|
||||
Object *Object `xml:"Object"`
|
||||
}
|
||||
|
||||
// Measurements ...
|
||||
type Measurements struct {
|
||||
ObjectType string `xml:"ObjectType"`
|
||||
PmName *PmName `xml:"PmName"`
|
||||
PmData *PmData `xml:"PmData"`
|
||||
}
|
||||
|
||||
// PmFile ...
|
||||
type PmFile struct {
|
||||
FileHeader FileHeader `xml:"FileHeader"`
|
||||
Measurements []*Measurements `xml:"Measurements"`
|
||||
}
|
||||
1389
crontask/tasks.go
Normal file
1389
crontask/tasks.go
Normal file
File diff suppressed because it is too large
Load Diff
129
crontask/xml.go.org
Normal file
129
crontask/xml.go.org
Normal file
@@ -0,0 +1,129 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"io/ioutil"
|
||||
)
|
||||
|
||||
const (
|
||||
// Header is a generic XML header suitable for use with the output of Marshal.
|
||||
// This is not automatically added to any output of this package,
|
||||
// it is provided as a convenience.
|
||||
Header = `<?xml version="1.0" encoding="UTF-8"?>` + "\n"
|
||||
)
|
||||
|
||||
type Attribute struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
Type string `xml:"type,attr"`
|
||||
Use string `xml:"use,attr"`
|
||||
}
|
||||
|
||||
type Schema struct {
|
||||
XMLName xml.Name `xml:"schema"`
|
||||
Text string `xml:",chardata"`
|
||||
Xs string `xml:"xs,attr"`
|
||||
Xsi string `xml:"xsi,attr"`
|
||||
ElementFormDefault string `xml:"elementFormDefault,attr"`
|
||||
AttributeFormDefault string `xml:"attributeFormDefault,attr"`
|
||||
Element struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
ComplexType struct {
|
||||
Text string `xml:",chardata"`
|
||||
Sequence struct {
|
||||
Text string `xml:",chardata"`
|
||||
Element []struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
MaxOccurs string `xml:"maxOccurs,attr"`
|
||||
ComplexType struct {
|
||||
Text string `xml:",chardata"`
|
||||
Sequence struct {
|
||||
Text string `xml:",chardata"`
|
||||
Element []struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
Type string `xml:"type,attr"`
|
||||
MinOccurs string `xml:"minOccurs,attr"`
|
||||
ComplexType struct {
|
||||
Text string `xml:",chardata"`
|
||||
Sequence struct {
|
||||
Text string `xml:",chardata"`
|
||||
MinOccurs string `xml:"minOccurs,attr"`
|
||||
MaxOccurs string `xml:"maxOccurs,attr"`
|
||||
Element struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
ComplexType struct {
|
||||
Text string `xml:",chardata"`
|
||||
SimpleContent struct {
|
||||
Text string `xml:",chardata"`
|
||||
Extension struct {
|
||||
Text string `xml:",chardata"`
|
||||
Base string `xml:"base,attr"`
|
||||
Attribute struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
Type string `xml:"type,attr"`
|
||||
Use string `xml:"use,attr"`
|
||||
} `xml:"attribute"`
|
||||
} `xml:"extension"`
|
||||
} `xml:"simpleContent"`
|
||||
Sequence struct {
|
||||
Text string `xml:",chardata"`
|
||||
MinOccurs string `xml:"minOccurs,attr"`
|
||||
MaxOccurs string `xml:"maxOccurs,attr"`
|
||||
Element struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
ComplexType struct {
|
||||
Text string `xml:",chardata"`
|
||||
SimpleContent struct {
|
||||
Text string `xml:",chardata"`
|
||||
Extension struct {
|
||||
Text string `xml:",chardata"`
|
||||
Base string `xml:"base,attr"`
|
||||
Attribute struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
Type string `xml:"type,attr"`
|
||||
Use string `xml:"use,attr"`
|
||||
} `xml:"attribute"`
|
||||
} `xml:"extension"`
|
||||
} `xml:"simpleContent"`
|
||||
} `xml:"complexType"`
|
||||
} `xml:"element"`
|
||||
} `xml:"sequence"`
|
||||
Attribute []struct {
|
||||
Text string `xml:",chardata"`
|
||||
Name string `xml:"name,attr"`
|
||||
Type string `xml:"type,attr"`
|
||||
Use string `xml:"use,attr"`
|
||||
} `xml:"attribute"`
|
||||
} `xml:"complexType"`
|
||||
} `xml:"element"`
|
||||
} `xml:"sequence"`
|
||||
} `xml:"complexType"`
|
||||
} `xml:"element"`
|
||||
} `xml:"sequence"`
|
||||
} `xml:"complexType"`
|
||||
} `xml:"element"`
|
||||
} `xml:"sequence"`
|
||||
} `xml:"complexType"`
|
||||
} `xml:"element"`
|
||||
}
|
||||
|
||||
func GenNRMXmlFile() {
|
||||
nrmFile := Schema{
|
||||
Xs: "http://www.w3.org/2001/XMLSchema",
|
||||
Xsi: "http://www.w3.org/2001/XMLSchema-instance",
|
||||
ElementFormDefault: "qualified",
|
||||
AttributeFormDefault: "unqualified",
|
||||
Element: struct{}{Name: "DataFile"},
|
||||
}
|
||||
|
||||
b, _ := xml.MarshalIndent(nrmFile, "", " ")
|
||||
b = append([]byte(xml.Header), b...)
|
||||
ioutil.WriteFile("D:/nrm-demo.xml", b, 0664)
|
||||
}
|
||||
Reference in New Issue
Block a user